php

元のページに戻る方法

php

<form id="frmInput" name=""frmInput" method="post" action="input_do.php"> <input name="id" type="text" id="id" /> <input name="submit" type="submit" value="送信する" id="id" /> </form> 参考…

PHP 入門(文法、postgresql)

php

変数の代入と文字列の表示 '; #' echo "hello $name world<br />"; #" print 1+1,"MATH",2*2; #表示は「,」で区切ることが可能 $name=NULL; print $name."さん"; #NULLはエラーではない $name .= "追加文字列"; ?> 定数 define(識別子, 値); 条件分岐 if (条件式){…