hackerman Posted March 27, 2007 Report Share Posted March 27, 2007 Kā var panākt, lai ierakstītā infa saglabājas input laukos? Piem. es ierakstu Niks: hackerman un vēl tur kko. Un nospiežu submit, un infa paliek tajā input laukā :) Tas ir ar mysql? Link to comment Share on other sites More sharing options...
v3rb0 Posted March 27, 2007 Report Share Posted March 27, 2007 kāds htmlam sakars ar mysql? <input type="text" value="v3rb0" /> Link to comment Share on other sites More sharing options...
hackerman Posted March 27, 2007 Author Report Share Posted March 27, 2007 A kā tu tukšam input laukam pēc teksta ierakstīšanas pieliksi klāt to value? Link to comment Share on other sites More sharing options...
andrisp Posted March 27, 2007 Report Share Posted March 27, 2007 (edited) Nu ja tu to domā, tā, ka tipa lietotājs nav pareizi aizpildījis formu, submito to, bet viņam tiek parādīts errors, ka kaut kas nav, un pareizi aizpildītie lauki viņam otreiz nav jāpilda, tad formas action liecu uz to pašu skriptu, kur forma (visvienkāršākais - atstāja action tukšu: action=""), un tad iekš formas input elementu value atribūtiem ieliec: <?php echo !empty($_POST['input_name']) ? $_POST['input_name'] : ''; ?> Protams, to visu var sarežģīt ar sesijām un dies pasarg - ar datubāzēm :). Edited March 27, 2007 by andrisp Link to comment Share on other sites More sharing options...
hackerman Posted March 27, 2007 Author Report Share Posted March 27, 2007 Laikam šitais dērēs, paldies :) Link to comment Share on other sites More sharing options...
PheliX Posted March 27, 2007 Report Share Posted March 27, 2007 un pie reizes neaizmirstam par htmlspecialchars() ;) Link to comment Share on other sites More sharing options...
Recommended Posts