- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
35 Posted Topics
I'm trying to write some php that will allow a user to edit an order they previously placed. But in the same way they made the order if that makes sense. So this is my jQuery code to send values to a php page: [CODE]$('#submit').live('click',function(){ var postData = {}; postData['data[order_id]'] … | |
Re: [CODE]<?php // Delimiters may be slash, dot, or hyphen $date = "04/30/1973"; list($month, $day, $year) = split('[/.-]', $date); echo "Month: $month; Day: $day; Year: $year<br />\n"; ?>[/CODE] This help at all? | |
![]() | Re: The only thing that jumps out is that the if statement is false, try taking that out and see if anything displays? |
Re: pChart - amazing stuff, i'm graphing directly from mysql data with PHP [url]http://pchart.sourceforge.net/index.php[/url] | |
I'm populating a dropdown from a mysql table with php but some cells in the column are blank, so in the dropdown there are gaps where these blanks are. Can i choose not to show blank cells or something? Thanks | |
[CODE] $datef = (date("Y-m-d",mktime(0, 0, 0, $_GET['year'], $_GET['month'], $_GET['day']))); $datel = (date("Y-m-d",mktime(0, 0, 0, $_GET['year1'], $_GET['month1'], $_GET['day1']))); echo $datef.$datel; $result = mysql_query("SELECT f8_0, n7_91, t_stamp FROM westdrayton WHERE t_stamp BETWEEN '".$datef."' AND '".$datel."' limit 20"); [/CODE] I have this PHP code to try and grab records from between the two … | |
hi i'm using this, its working great, but if someone has a hyperlink in their status it doesnt pull it across - is there anything someone can think of? Thanks [CODE] $(document).ready(function(){ var username='xxxxxxxx'; // set user name var format='json'; // set format, you really don't have an option on … | |
i have this jquery code: [CODE] $(document).ready(function(){ //Hide the tooglebox when page load $(".visit").hide(); $("#suppliers-table td").hover(function(){ $(".visit").show(); }); }); [/CODE] for this html: [CODE] <table id="suppliers-table"> <tr> <td><p class="suppliers-name">ASD</p><a class="visit" href="#">Visit Website</a></td> <td><p class="suppliers-name">ASD</p><a class="visit" href="#">Visit Website</a></td> <td><p class="suppliers-name">ASD</p><a class="visit" href="#">Visit Website</a></td> <td><p class="suppliers-name">ASD</p><a class="visit" href="#">Visit Website</a></td> <td><p class="suppliers-name">ASD</p><a class="visit" … | |
Hi, I'm doing a site for a client and they want a blog and an articles area. What i imagined doing was designing the homepage in html/css/jquery etc...and then install WordPress through cPanel for the blog and the article area. I have a choice i need some help with, do … | |
Re: I'm trying to do the same thing so let me know how you get on! | |
Hi i've been set this assignment to design a Craps game for Java, i know this has been done lots before but i seem to be going round and round with this code....very frustrating! This is the code i've written so far: [CODE] public class CrapsGame { public static void … | |
Re: I second the IE thing. Happened to me... | |
Re: php?> becomes ?> and <php? becomes <?php give that a try | |
I'm sure this has been answered many times but its something i've struggled with doing, if i wanted a user login on one page, when, for example "John" logs in he goes to an area that only "John" can see, "Jill" cannot see this area and cant access it by … | |
Re: Definitely visit whatthefont.com/co.uk (can't remember) | |
Re: Use jQuery .load() method to a PHP script? I use it to simulate frontend applications monitoring real time data from machinery. If anyone wants it i can post a bit of code up... | |
Hi, Any advice on starting a freelance job board? I can use PHP/mySQL etc but just asking for a bit of structure guidance, anyone had any experience with administrating one/starting one? Thanks in advance! | |
Re: Below is the code i used to apply conditional formatting to a table i was pulling from a mySQL database. If the value in the cell was bigger or smaller than 200 i would flag it a different background colour. I think you might be able to adapt this for … | |
Re: A separate table in the db, columns for user id and online status, write a php file to select latest result from table, use jquery on main html file to load() the response from the PHP file every half second or so into a div or whatever your using to … | |
Re: So have you got a skeleton site, with hmtl (or whatever you are coding) and css for layout? Are you looking to integrate images and styling into without messing up functionality and layout? | |
Is this is an XP thing/quirk or am i going about this the complete wrong way... We have an XP machine which is accepting/managing several OpenVPN connections coming into our office, i need this machine to act as a gateway to the remote OpenVPN connections. I've enabled ICS on one … | |
Hi, Just need a bit of advice, no code or anything, i know someone at quite a large company who is interested in implementing their own social media site for their employees. Roughly how would one go about coding/setting this up, i imagined it would take alot of heavy duty … | |
Hi i'm developing an app where i'm reading a value from a device and putting it into a mysql db, i have setup a function where the vb will calculate whether the new value being read has changed by 3% from the last value and if it has run the … | |
Hi, I'm developing a data logging application using VB for the actual logging to a MySQL database. I'm reading a value from a device and then running an insert query every minute. This is great but if the value doesnt change all day then my records are going to all … | |
[CODE] <script> $(document).ready(function() { var refreshId = setInterval(function() { if ($('#recent td') > '200') {.css("background-color", "#1eff00")}; },1000); }); </script> [/CODE] The above is what i'm trying to achieve but its definitely not working! I have a table being outputted by PHP from a MySQL Db but i need to highlight … | |
Hi I have a html page with a div and i'm loading data into it every 10 seconds (using jQuery load().) from a php page which is querying a mysql db. This is great but what i want to do is if a value in the table i'm loading into … ![]() | |
Hi, I managed to set OpenVPN up fine on my windows vista machine at work, however now i need to set the same arrangement up on our server running Windows SBS 2008, on my vista machine the only things i needed to do was to enable internet connection sharing on … | |
Hi, I managed to set OpenVPN up fine on my windows vista machine at work, however now i need to set the same arrangement up on our server running Windows SBS 2008, on my vista machine the only things i needed to do was to enable internet connection sharing on … | |
Hi, I'm developing a php script that reads data from a mysql db and then puts the data into csv format to then be sent upto Pachube.com for a web app i'm developing. This is a simple problem i'm sure but i cant seem to solve it! Code below: [CODE] … | |
Hi, What i have is a variable that is getting updated periodically and i've set the php script to refresh itself every 30 seconds to run a mysql query updating a db, this is good but if this value isnt changing from the source i get duplicate records in the … ![]() | |
Hi i'm developing a web application that uses an arduino board that sends data to pachube.com and i extract that data from pachube as a csv to a php script then i explode it and put a value in a database....this all works great but what i'm asking is do … | |
I'm developing a very simple VB app in Visual Basic 2008, where i have a textbox being dynamically updated with a value every second, i need this value to be inserted into a mySQL DB, i have made the connection ok but not too sure how to structure the VB … | |
I'm developing a very simple VB app in Visual Basic 2008, where i have a textbox being dynamically updated with a value every second, i need this value to be inserted into a mySQL DB, i have made the connection ok but not too sure how to structure the VB … | |
I've setup a javascript window.open bit of script to print one div. Is it possible to style the div with css that gets printed, no matter what styling i put around the div, they disappear when i press the print button and it opens this new window with the div … | |
Hi, I'm designing a web page that has 6 drop down html form inputs (d, m, y, d, m, y) for pulling records from a mysql database depending on users input of a range of dates. I'm trying to use an Ajax script that will hopefully, on submit of form, … |