I have seen some sort of coding like this :
<Form Action="<?php $php_self ?>" ... ...
If i'm not wrong, the form sent itself back to the same .php file... wat does $php_self means?
Did i code it correct? or do i need a "print" before the $php_self?
I do echo $php_self; but it just puts out the html version of where the file is.
Do u think i need to have the "print" before the $php_self?
Yes.
Or <?=$php_self?>. See the manual for details on the use of = in this context.
your problem is that $php_self will not work. It's case sensitive. Use $PHP_SELF