Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

PHP Forum


You are currently viewing our PHP Forum as a guest. Please register to participate.
Login



Freelance Jobs

Reply
is php in a list possible
Old 07-21-2009, 02:10 AM is php in a list possible
Experienced Talker

Posts: 41
Trades: 0
this is what i made, it doesn't work, what im trying to do is populate a list with a loop,

<?Php
<form action="" method="get"><select name="list">
for ($i = 1; $i <= 10; $i++) {
<option value="$i">$i</option>
}

</select></form> ?>
flatrat is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 07-21-2009, 03:56 AM Re: is php in a list possible
NullPointer's Avatar
Will Code for Food

Posts: 2,784
Name: Matt
Location: Irvine, CA
Trades: 0
You can't just type out your markup in the middle of your PHP code. HTML is generally the output of PHP, not PHP itself.

PHP Code:
<form action="" method="get">
     <select name="list">
<?php
for($i 1$i <= 10$i++)
     echo 
"\n\t\t<option value=\"$i\">$i</option>";
?>
     </select>
</form>
__________________

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE

Last edited by NullPointer; 07-21-2009 at 06:15 PM..
NullPointer is online now
Reply With Quote
View Public Profile Visit NullPointer's homepage!
 
Reply     « Reply to is php in a list possible
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.55707 seconds with 12 queries