| | |
Php mysql image scroll script??
Please support our PHP advertiser: PostgreSQL or MySQL? Compare and contrast the two most popular open source databases
![]() |
•
•
Join Date: Sep 2009
Posts: 36
Reputation:
Solved Threads: 4
0
#2 Oct 28th, 2009
You could do this with radio buttons or JavaScript as facebook does.
Obviously we wont write this script for you but here is how it generally works.
Something allong those general lines.
Obviously we wont write this script for you but here is how it generally works.
php Syntax (Toggle Plain Text)
<?php // Run query to retreive gifts $get_gifts = mysql_query("SELECT * FROM `gifts`"); if( @mysql_num_rows( $get_gifts ) > 0 ) { echo "<form method=\"submit\" action=\"#\">"; while( $row = mysql_fetch_array( $get_gifts ) ) { echo "<img src=\"...\" alt=\"...\" />" . $row['title'] . '<input type="radio" name="gift" value="' . $row['title'] . '" />'; } echo '<input type="submit" name="send" value="Ok" />'; echo "</form>"; } if( isset( $_POST['send'] ) ) { $gift = mysql_real_escape_string( $gift ); // Need the user receiving the gifts id etc. $user_id = "..."; $query = mysql_query("INSERT INTO `received_gifts` (id, gift) VALUES ('$user_id', '$gift')"); echo "<p>Gift sent</p>"; } ?>
Something allong those general lines.
Last edited by Froger93; Oct 28th, 2009 at 12:50 am.
![]() |
Similar Threads
- PHP MYSQL image display (PHP)
- Looking for a PHP/MYSQL Programmer (Web Development Job Offers)
- Need Highly Experienced PHP/MySQL Programmer $15-$25/hour (Web Development Job Offers)
- PHP/MySQL Programmer Position (Web Development Job Offers)
- php mysql image again PLEASE HELP (PHP)
Other Threads in the PHP Forum
- Previous Thread: str_replace help needed
- Next Thread: pls.. help
| Thread Tools | Search this Thread |
Tag cloud for PHP
.htaccess access ajax apache api array beginner binary broken cakephp checkbox class cms code cron curl database date directory display download dynamic ebooks echo email error file files folder form forms function functions google href htaccess html image include insert integration ip java javascript joomla limit link login loop mail mediawiki menu mlm mod_rewrite multiple mysql number oop parse paypal pdf php phpincludeissue phpmyadmin problem query radio random recursion regex remote script search server sessions sms soap source space speed sql structure subdomain syntax system table tag tutorial update upload url validation validator variable vbulletin video web white xml youtube





