- 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: From what I've seen, generating followers is to get involved in something they are doing, mainly gaming at this point seems beneficial. | |
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: 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 … | |
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 … | |
Re: From what I remember this has to do with the openSSL module installed on most linux servers. This may point you in the right direction.... http://www.stellarwebsolutions.com/en/articles/paypal_button_encryption_php.php (openssl documentation) http://php.net/manual/en/function.openssl-encrypt.php As for hiding submitted form values, why not use php form validation instead of javascript/html set values. (i.e. I have a … | |
Re: Although there are several ways to accomplish this (personally write my own javascript for this), JQuery may be your friend. It looks like they have absolutely positioned 3 div tags over each other (which contain the images), then used JQuery to slowly transition the opacity of each div. This plugin … | |
Re: change line 4 to textInput = [] Edit: wait... your trying to perform string operations on a list of strings? You will need to itterate through the list and perform individual string operations for each option. Why two seperate posts for the same code? http://www.daniweb.com/software-development/python/threads/459033/python-how-to-store-user-text-input | |
Re: You are continually replacing the value of textInput using that loop. Try creating a list element and append to it instead. Something along the lines of this perhaps?... done = False textInput = [] while(done == False): temp = input() if temp == "EOF": break else: textInput.append(temp) can concatenate/format the … | |
Hey guys, think I've just been staring at this problem too long to find out how simple it is to fix... worked with several methods of finding and saving image dimensions to MySQL (actually used this same method several times), but the MySQL width and height is not populating this … | |
Hey guys, I'm trying to get an idea of my job possibilities in a programming-related field without a degree. I've been going to my local university for far too long in persuit of a computer science degree, however, I now face the very real possibility of not being able to … | |
Hey guys. I'm having a problem with changing the CSS of a div tag. I've done a bit of syntax/semantic research on this, but this situation seems a bit too specific to nail down. Goal: I have 4 checkboxes 1st: center text (turn off 4th checkbox if it is checked) … | |
Hey guys, have a quick multiple database connection question I hope will be simple to answer. I've worked with this type of situation several times, but I must be missing something. I have a newspaper website that has 8 databases (news, obituaries, opinion, etc..) which can hold about 7 counties … ![]() | |
Hey guys, I've been stuck on this problem for quite some time now. I'm trying to have someone type some text into CK editor and then I want to count how many bold, italic, or underlined words have been typed. I've managed to count the number of tags there are … | |
Re: Not sure I understand what your looking for... you can get simple free compilers from just about anywhere... JGrasp is a good one ([url]http://www.jgrasp.org/)[/url]. | |
Hey, guys, hope this is the correct place to post this question... I am wondering if there is some sort of web-based player that can directly play HD video formats such as .m2ts(H.264) files. I'm not very familiar with what codecs can and can't be played via a browser. I'm … |
The End.