Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #18.7K
Ranked #2K
~8K People Reached
About Me

An IT Guy Relaxing in Costa Rica (for now)

PC Specs
Windows 7 running WAMP
Favorite Forums

8 Posted Topics

Member Avatar for PinoyDev

Of the code after you run your page? I would like to see what IE and Firefox are putting into the boxes where your PHP code is.. Also, are you looping through your images?

Member Avatar for KazmiLahore
0
194
Member Avatar for Davife

It looks like all of your check boxes have the same name, putting them into a group. So you would only get the result of the checked box. using jQuery tho, you could loop through them and put the checked box values into one array and send that.. assuming these …

Member Avatar for Davife
0
6K
Member Avatar for an00p
Member Avatar for Sorcher

[CODE] $result=mysql_query("UPDATE articles SET loginid='$loginid',title='$title',author='$author',body='$body',date='$today',category='$category' WHERE articleid='$getedit' LIMIT 1") [/CODE] Just use this, you had an extra ) that you didn't need...

Member Avatar for Sorcher
0
92
Member Avatar for phil_evans_csl

If you give the select field a class and then run some code using jQuery, would that work for you? [CODE] $(".className").change(function() { // Your code here }); [/CODE]

Member Avatar for thejimgaudet
0
86
Member Avatar for oxenjo30
Member Avatar for luke noob

I think you will need to run that PHP file through a .post() command, that will return the values you want, the session ID comes from php session, so you don't need to pass that with the post.

Member Avatar for thejimgaudet
0
249
Member Avatar for Clarkeez

Well, off the top of my head I would say that you write a small PHP file that will check the count of rows in the db, like this let's call the following code count.php [CODE] <?php //CONNECT to your DB $sql = 'SELECT * FROM table;'; $result = mysql_query($sql); …

Member Avatar for thejimgaudet
0
240

The End.