- Strength to Increase Rep
- +7
- Strength to Decrease Rep
- -1
- Upvotes Received
- 19
- Posts with Upvotes
- 19
- Upvoting Members
- 15
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
Bachelors of Interdisciplinary Studies With Emphasis in Technology (essentially a Computer Science major with 3 elective classes changed to leadership and business tech). Freelance Web-developer for 11 years. Freelance software developer for 5 years.
- Interests
- What's in your pockets?
- PC Specs
- ASUS Sabertooth Mobo, AMD 8-core (4.0Ghz), Cooler Master HS/Fan (water cooled), GSkill DDR3 (8Gb x 2),…
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 … | |
Hey guys, I'm trying to start a yes/no vote div which, when clicked, increments MySQL entry either way. I've seen several examples of how to do this type of thing online, but can't seem to grasp this process on my current layout. I'll show a little as possible to not … | |
Re: Perhaps this helps point you in the right direction (specifically the topic labeled 'Runtime Configuration' defined in the php.ini file)? http://www.w3schools.com/php/php_ref_date.asp EDIT: Found this as well... http://us2.php.net/manual/en/function.date-default-timezone-get.php seems there are several possibilities under the 'Description ' section... "If none of the above succeed, date_default_timezone_get() will return a default timezone of … | |
Hello fellow Daniwebians, I'm on the hunt for an eCommerce solution that my selection of keywords just can't seem to find. I'm trying to find a framework to create an eCommerce website driven by my own database (contains price, shipping, details, etc.. itself). Pretty much hoping for a framework that … | |
EDIT: I'm sorry for multiple posts, I couldn't delete or modify the previous one. Hey guys, ASP.net noob here (several years since I've worked with anything not opensource-related). I'm attempting to pretty much copy and modify an ecommerce site tutorial which is driven by my already created MS SQL database … | |
Hey guys, ran into a problem my troubleshooting hasn't figured out yet. Recently I've had to frankenstein a new rig (all hardware is compatible as far as I know) because my last one had motherboard voltage spikes. Now when I try to open my development software (aptana studio) it will … | |
Re: Why do you define $systolic="systolic" and $diastolic="diastolic" before the query? Are you sure you're getting a result from the $info=@mysql_fetch_array($select, $conn) ? | |
Re: Might help... http://www.w3schools.com/cssref/pr_background-position.asp If not, then it would help to get a link to the site for investigation. | |
Hey guys, Just trying to get my ducks in a row for an ecommerce website. I'm setting up a zencart-based website and am rounding the final lap on completion. I couldn't find an all inclusive post on this. I want to be able to recieve payments via paypal and credit … | |
Re: I personally use a combination of programs that are free (or free to try) which all look for slightly different types of malicious software. Spybot - Search and Destroy http://www.safer-networking.org/mirrors/ Malwarebytes http://www.techspot.com/downloads/4716-malwarebytes-anti-malware.html and if those don't work, TDSSKiller Rootkit Removal Utility http://usa.kaspersky.com/downloads/tdsskiller Both Spybot and TDSSKiller are a bit more … |