- Strength to Increase Rep
- +7
- Strength to Decrease Rep
- -1
- Upvotes Received
- 29
- Posts with Upvotes
- 25
- Upvoting Members
- 19
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
Bachelors of Interdisciplinary Studies With Emphasis in Technology (Computer Science major with 2 classes changed to leadership and business tech).
Freelance Web-developer for 20 years.
Freelance software developer for 15 years.
- Interests
- What's in your pockets?
- PC Specs
- Unlimited
109 Posted Topics
Re: What would you like to know? What languages to learn, what frameworks to use, what hosting to use. front-end design tools, back end data manipulation, etc? I've been doing this for 20 years and there is still so much to learn. | |
Re: As a quick Google says.... "A website backlink is a link on another website that points to a page on your website. Backlinks are also known as inbound links." What is your goal? | |
Re: From what I've seen, generating followers is to get involved in something they are doing, mainly gaming at this point seems beneficial. | |
Re: How do you mean? Perhaps if you could explain a bit more? Do you mean you want to scroll down a page by clicking something? If that's the case you use anchor tags. | |
Hello all! I have been away from this forum for far too long and would like to help with my experience/knowledge. This place helped me get through college and early professional work as a web developer. Is there a section to post random code snippets for tasks that may help … | |
Hello friends, it's been some times since I've posted here, but this community has always been my "I really need help" place to go. Lets get to the idea... I have a WordPress (dislike WP very much) site I'm customizing. Have a popup iFrame on click that is built into … | |
Re: To jump pack to the OP 2 years ago... I won't say either way about the social/ethical logistics of creating or working on a pornographic website, but I will say it will always be a thing, someone has to do it, and it will be done. I Learned the majority … | |
Re: Penetration testing is a good start. perhaps this URL will help? I've used a few of these https://www.esecurityplanet.com/networks/pentest-framework/ Also, Selenium unit testing is a good start. | |
Re: You wouldn't want to use a client-side language like JavaScript to fetch backend data. For this you should look into a backend language like PHP (recommended), Python, C#, etc... unless you make a 2 dimensional array thats hard-coded into the JavaScript and not an external source/file. | |
Re: What output are you expecting? As of right now the code outputs nothing, but the methods are in use fine... Have a look at this. https://docs.microsoft.com/en-us/dotnet/api/system.timespan.parse?view=netframework-4.7.2 | |
Re: To get a URL parameter (E.G. http://hostname.com/mywebapp/mypage.jsp?name=John+Smith) where "name" is the requested parameter, you would use... <%= request.getParameter("name") %> This would pull out the "John+Smith" after the "name" attribute. you could then nest it into any code. (front-end example)... <p>Hello <%= request.getParameter("name") %></p> | |
Help! I don't know what I did! I was in the process of helping to fix a friends HDD by plugging it into my system to then chkdsk, get updates, etc, little did I realize I left some sort of bootloader on the flash drive that I was using and … | |
Re: Is index.php located in the same folder? Have you tried to simply echo instead of setting session vars and redirecting? Have you tried absolute or explicit relative URLs to rule out domain/scope issues (e.g. http://www.whatever.com/admin/index.php or ./index.php instead of index.php)? Are there any console errors or flags in network queries … | |
Re: If the title is correct, you want PHP multi-ary to JavaScript multi-ary (JSON perhaps)? Seems array example 2 may apply to your case... http://www.dyn-web.com/tutorials/php-js/json/multidim-arrays.php | |
Hey guys, been a while since I've been here, but still the best source for help. Hoping you guys can help me with a checkbox/radio button scenario. HTML... <div style='margin-bottom:5px;'> <div style='float:left;width:49%;text-align:left;'><input class='toppingChecked' type='checkbox' id='top-".$row['id']."' value='".$row['topping']."' /> ".$row['topping']."</div> <div style='float:left;width:7%' class='lblLeft'> <input type='radio' class='css-checkboxLeft countToppingSelect' name='top-".$row['id']."' id='top-left-".$row['id']."' value='Cheese' /> <label … | |
Re: Without seeing the actual data you can try to use Chrome or FireFox (firebug extension I think?) to check if there were any errors in the PHP GET/POST... pres F12 to open the inspecter console -> click on the tab named 'network' call your php function/file and look at what … | |
Re: Have you tried to echo the variable to make sure there is a resulting value before the form? E.G. <p><? echo $order; ?></p><form role="form"... | |
Hey guys, this seems to be a thorn in my side. I've been working on scraping a website which uses aspx and has eventvalidation/viewstate inputs. Every other scraping experiment I've made was not this difficult. Maybe one of you geniuses here at Daniweb has an idea of how to solve … | |
Re: Not sure I unerstand what you're asking... you want to click on text located someplace on the website and have that populate into the input box or you want to click on the input box and make something appear there at the same time? ![]() | |
Re: I use onload <body onLoad="setTimeout('delayer()', 5000)"> ... php <? function delayer(){ header('Location: '.$_SERVER['HTTP_REFERER']); } ?> ... or javascript <script> function delayer(){ window.history.go(-1); } </script> | |
Re: http://try.seoimage.com/301-redirects-canonical-url-tutorial/ ...might help? | |
Re: openID. very old Google example(hope it still applies)...http://qpleple.com/how-to-make-people-login-into-your-website-with-their-google-account/ | |
Dajia hao, daniwebians! Just a quick question, is it possible to focus on a textbox on an externally loaded website? My goal is to load an external website, focus on a textfield, auto fill it with the current date, then submit it to then run my newly created scraper tool … | |
Hello fellow daniwebians, I'm attempting to wrap up an asp.net/c# eCommerce website recently created (recently discussed in many of my posts). I'm now trying to transfer the finished product from my local development environment to a remote host. I can publish the files fine, I can reset the connection-strings as … | |
Hey guys, having a bit of trouble with a customized eCommerce. The part I want to focus on is the adding of an item to the shopping cart (and the details that go along with each item). Everything works as is with the things I need commented... initial call to … | |
Re: Perhaps... [FormatNumber Function](http://msdn.microsoft.com/en-us/library/xfta99yt(v=vs.90).aspx) specifically the second (first optional) parameter, NumDigitsAfterDecimal. | |
Hello fellow Daniwebians, having a bit of trouble setting up the like button and comments box on my individual articles (local news website). I've created an app (for the purposes of having an app ID) and created a page for that app. I'm now attempting to use Facebook's developer plugins … | |
Hey guys, I'm not very familiar with asp.net (Doing this in c#) or session cookies for that matter, just the basics. Trying to store a list of items in a session cookie, then when needed, pull those items back out as a list to then use them in a MS … | |
Hey guys, still working on creating some sort of shopping basket and have decided to try using session cookies. I can populate the cookie with at least 1 entry, but either can't seem to convert string <> arraylist correctly or am working with cookies incorrectly. I'm using asp.net/c# and am … |
The End.