Jump to content

is this possible??


ec

Recommended Posts

oh sorry... ;D

 

I mean having like a button next to in so that you can click it to submit it as the contents of a field...any ideas how you might go about it??  because everything just goes weird for me when combining html with php

Link to comment
Share on other sites

It should look something like this:

 

<?php

if (isset($_POST['submit'])){
   $choice = $_POST['choice'];
   
   echo "The user selected <b>$choice</b><p>";
}

$query = mysql_query("SELECT * FROM TABLE");

echo '<form>';

while ($row = mysql_fetch_assoc($query)){
   echo "<input type='radio' name='choice' value='{$row['unique_col']}'><br>";
}

echo '<input type="submit" name="submit">';
echo '</form>';

?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.