Pradinis
Pagalba
Užsisakyk!
- Reklamą
- Hostingą
- El. pašto dėžutę
Užsisakyk!
Įrankiai
Pasidalink
- Visos temos
Forumas | PHP-Fusion, WordPress, Shopify, PHP ir MySQL (PROGRAMAVIMAS) | Bendri PHP-F klausimai |
Autorius: r_style | Peržiūrų: 872 |
r_style Narys Patrankų mėsa Pranešimai: 4 Įstojęs: 2009 Kov. 30 21:03:42 | |
pas mane instaliotas Apache lockalserve. problema yra ta kad neveikia letyviskos raides kai kreipesi i PHP Pvz paprastas html su nukreipimu i php <html> <body> <form action="file:///Z|/home/test1.lt/www/test1.php" method="post"> Ivesk žodi <input type="text" name="name"><br> <input type="submit" value="Taip!"> </form> </body> </HTML> Paprastas php <html> </head> <body> <? if ($name=="abėcėlė") { echo "Teisingai";} else echo "Griskš ir ivesk teisinga žodi "; ?> </body> </html> problema yra ta kad php nesupranta zodzio =="abėcėlė |
|
bruzgis Narys Ekspertas Pranešimai: 3368 Įstojęs: 2006 Geg. 9 18:05:02 | |
<html> <head> <meta http-equiv='Content-Type' content='text/html; charset=windows-1257'> </head> <body> <form action="file:///Z|/home/test1.lt/www/test1.php" method="post"> Ivesk žodi <input type="text" name="name"><br> <input type="submit" value="Taip!"> </form> </body> </HTML> Paprastas php <html> <head> <meta http-equiv='Content-Type' content='text/html; charset=windows-1257'> </head> <body> <?php $name = $_GET['name']; if ($name == "abėcėlė") { echo "Teisingai";} else { echo "Griskš ir ivesk teisinga žodi "; } ?> </body> </html> Redagavo bruzgis 2009 Kov. 30 22:03:38 |
Peršokti į forumą: |