-
Need little help with PHP
The result to that would be : 09 06 12 16 and i want : 06 09 12 16 in brief i want PHP to check and classify the variables from the minimum to to the maximum number that way it will echo the smallest number first, then the second, then the third and so on ... and i don't want to do that manually
-
Need little help with PHP
Hello I need to do the following and i need some help : these are the variable i have : $Variable1 = 09 $Variable2 = 06 $Variable3 = 12 $Variable4 = 16 I need to know how to print the content of these variables in an Incremental way like this : 06 09 12 16 Thank you in advance
-
PHP Problem
Hello everyone i have a little problem in PHP i created a page, named Cmup.php for example and i added a form in which the Action="Cmup.php" i added few textboxes and few IFs the IFs check if : the text in the input is numeric, if it's not it displays and error message telling the person to enter a valid input and other things. Now if i used Cmup.php as action everything would work just fine the only problem is, that i wanted to use another page for action, namely Cmup2.php i did and it worked, however it didn't check for any of the 'if' conditions, it simply executed I want it to work in this kind of way for exemple : if the input entered in textbox1 : is not a numeric, it displays the message " invalid input " and stays on Cmup.php if the input entered IS a numeric, it displays the results in Cmup2.php i hope i was able to explain what i am trying to do thanks in advance
-
Option menu in JS
Hello everyone i just want to know the code to use to make an options menu like for exemple in some forums when you want to change language, you click on a thing where the default value is the default language, and when you click other language appears and you chose one of them i hope that you have understood me here is an example : http://gpeasy.com/data/_addondata/x_Addons/screenshots/9/159/language_menu1.png thanks
-
Tiny problem with onload
Actually that was exactly what i was searching for thanks for the help ELITE
-
Tiny problem with onload
Hello guys i'm a begginer in HTML/CSS scripting, the problem is that i added some scripts/functions, and i am supposed to add the following in the body tag : onload= "FunctionName()" this i was able to do easily, and the script worked fine, however the problem is that i'm trying to add a miltitude of scripts that are triggered onload it's like "FirstFunction()" 'SecondFunction()" ThirdFunction()" i tried to add them by repeating the onload signal and the result was that only the first function worked : onload="FirstFunction()" onload="SecondFunction()" if i tried to add them side by side like onload="Firstfunction()" "Secondfunction()" it returns with an error i'm totally clueless about what to do so i hope i'm gonna find some help in your forums thanks in advance