this is an video explains everything when i chose 'Show 3 thumbs' and click on submit query it will return to 'Show 0 thumbs' i want to make it stay as i picked .
$query = mysql_query("UPDATE wp_villaarts_settings SET examble='$example_input' , readmore_text='$readmore_text'");
if ( $query ) { #successful entering of data "the value have been updated successfully. Now check the database."; } else { #unsuccessful entering of data "there a problem occurred while updateing your value in the database"; }
}
function ss_thumbs_count(){ $result = mysql_query("SELECT examble FROM wp_villaarts_settings WHERE id='1' "); if (!$result) { die("Database query failed: " . mysql_error()); }
?> <form method="post" action="<?php echo $_SERVER['']; ?>"> <label>How many thumbs shows beside the slideshow: <select name="thumbs_num"> <option value="1">Show One Thumb</option> <option value="2">Show Tow Tuhmbs</option> <option value="3">Show Three Thumbs</option> </select></label> <small style="color:#F00;">Default: <strong>3</strong></small><br /><br />
<label>write the read more text the way u like: <input type="text" name="readmore_text" id="readmore_text" value="<?php readmore_text(); ?>"/></label><br /><br /> <input type="submit" name="submit" id="submit" /> <br /><br /> </form>
Last edited by m-elgendy; 10-12-2009 at 11:57 AM..
add selected="selected" to the chosen option when the page is rendered
__________________
Chris. ->> Please login or register to view this content. Registration is FREE <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
you can't if you refresh the page, it will always show the default (first) or the one with selected specified.
If you submit the page and write in the selected attribute serverside then it will show that one as the default.
__________________
Chris. ->> Please login or register to view this content. Registration is FREE <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
This code shows how to set it for the first option;
PHP Code:
<select name="thumbs_num">
<option<?php if($example_input == '1') echo(' selected=/"selected /"'); ?> value="1">Show One Thumb</option>
<option value="2">Show Tow Tuhmbs</option>
<option value="3">Show Three Thumbs</option>
</select>
repeat that for the other options (change the equality check value to match each line first.
__________________
Chris. ->> Please login or register to view this content. Registration is FREE <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
__________________
Chris. ->> Please login or register to view this content. Registration is FREE <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
__________________
Chris. ->> Please login or register to view this content. Registration is FREE <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?