View Single Post
ישן 07-02-09, 16:19   # 3
dor77
חבר וותיק
 
מיני פרופיל
תאריך הצטרפות: Jan 2008
הודעות: 1,650

dor77 לא מחובר  

PHP קוד:

<FORM name ="form1" method ="post" action ="radioButton.php">

<
Input type 'Radio' Name ='gender' value'male'>Male

<Input type 'Radio' Name ='gender' value'female'>Female

<Input type "Submit" Name "Submit" VALUE "Edit">
</
FORM
radioButton.php
PHP קוד:

<?PHP


if (isset($_POST['Submit'])) {

$selected_radio $_POST['gender'];

if (
$selected_radio == 'male') {
echo 
"Your male";
}
else if (
$selected_radio == 'female') {
echo 
"Your female";
}

}

?>
ךא הצלחתי לעשות דבר דומה עם תיבות סימון..וכל הקטוע של המסד..
איך אני יכניס..כי אני גם רוצה שאני ישלוט על ההוצאה..
כי כל דבר במקום אחר בדף..

תודה.
__________________
מתכנת php אמין ומקצועי.
מחירים נוחים!
יצירת קשר: 0544378743
  Reply With Quote