0

Atribuir función php en formulario?

Tengo un formulario con 3 radio button y un button, quiero que cuando click en el button ejecute una función php con un if para cada radio button. Tengo todo criado, pero no se como decir que con el click ejecuta la función. El código es el único que tengo creado aquí. https://code.sololearn.com/wFLtu1D6B8Zm/?ref=app

4th Jan 2018, 4:52 AM
Tiago David Furtado
Tiago David Furtado - avatar
1 Odpowiedź
+ 4
I'm sorry to tell you this, but that's not possible, this is not supported in SoloLearn Code Playground. However, if you really want to test how your function works, you can "fake" form submission data, as follows, do this only for code testing purposes, but if you have a local server this is totally unnecessary. <?php // fake submitted form data $_POST["level"]="easy"; if(isset($_POST["level"])) SelectedLevel(); function SelectedLevel() { // ... } ?> Hth, cmiiw
6th Jan 2018, 2:01 PM
Ipang