while I was looking through some code I found one form tag which is sending the information to './' Here's what the code looks like:
<form action='./' method='post'>
I don't really know what './' is and I hope you can answer me that question.
while I was looking through some code I found one form tag which is sending the information to './' Here's what the code looks like:
<form action='./' method='post'>
I don't really know what './' is and I hope you can answer me that question.
./
is the current directory. It'll send it to the default file in that directory.