In Turbo Pascal we have the read(); function. Is there a function to get variables, sent to any script on PHP?
In Turbo Pascal we have the read(); function. Is there a function to get
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The Turbo Pascal read() and readln() functions read from file. If no filename is specified, they read from standard input.
In PHP, you have to open the file first, then read from the file handle allocated on open: the equivalent of standard input in PHP is php://input, so something like:
But note that it’s not particularly practical to do this from a web interface, only from the CLI