hey all,,, i really need help in PHP coding,,, can anyone help me on how to make this into PHP ?
so its just two drop-down boxes and a submit button,,,,
http://www.7des.com/upload/upload/exp.gif
Printable View
hey all,,, i really need help in PHP coding,,, can anyone help me on how to make this into PHP ?
so its just two drop-down boxes and a submit button,,,,
http://www.7des.com/upload/upload/exp.gif
no one :(
ohh thats too bad,,,, well thanx any ways http://www.montreux.us/fourm/images/smiles/cry.gif
Well what is it you need help with? How to make the dropdown boxes?
lol,,, no i know how to make a drop-down box,,,,
but i used this code
in the index.phpCode:<form action="process.php" method="post"> *
<br> *
<select name="language"> *
<option value="arabic">Arabic </option> *
<option value="english">English</option> * *
</select> *
<br> *
<input type="submit" /> *
</form>
and i added
this as "process.php"Code:<?php *
$language = isset($_POST['language']) ? stripslashes($_POST['language']) : ''; *
if ($language = english) * *
{ * *
*include ("lang/english.php"); * *
*setcookie("lang_eng", $language); *
} else { * *
*include ("lang/arabic.php"); * *
} *
echo "Your language has been set. *Click <a href=\"link\">here</a> to continue"; *
?>
but it didn't work,,, and by the way i placed all the files in correct locations
and this one is just for the language drop-down box!
nvm
i found an answer,,,
right here
http://www.7des.com/php/ver5/
nvm
i found an answer,,,
right here
http://www.7des.com/php/ver5/