Science, asked by ameer4419, 2 months ago

Identify the PHP function used to get the username value submitted by a user without adding any values submitted through form? *

Answers

Answered by gouthamraju389
0

Answer:

Explanation:

Pls Mark Me As Brainiest

Attachments:
Answered by mindfulmaisel
1

PHP function for username value submitted by a user

Explanation:

the PHP program that retrieves a user's username value without adding any values given through a form:

#php function that retrieves a user's username

if(isset($_POST["username"]){

$username = $_POST["username"];

}

hence, this is the PHP program that retrieves a user's username value without adding any values given through a form

Similar questions