this work without img
InsertNewPerson.download2("http://" & ServerIP & "/persons.php", Array As String ("action", "InsertNewPerson", "name", NameET.Text, "age", AgeET.Text))
this does not work without img and with img
InsertNewPerson.postString("http://" & ServerIP & "/persons.php","action=InsertNewPerson & name="& NameET.Text &"&age="& AgeET.Text)
your PHP code needs some work, actually 2 things pop out to me.
For one, your not using MySQLi because mysql_xxxx is deprecated and may not even work at all at this point.
and two, your not using mysqli_escape_string so you will get SQL injection exploited. My advice, watch video courses, or take a course in PHP and PHP/MariaDB/MySQL integration.
learning is the cure of your problems. if you just copy paste everything each time you'll keep coming back with the same questions since you don't know what's going on.
most of the things you need is just a few lines of code so you don't need to go through 500 pages of php.
your PHP code needs some work, actually 2 things pop out to me.
For one, your not using MySQLi because mysql_xxxx is deprecated and may not even work at all at this point.
and two, your not using mysqli_escape_string so you will get SQL injection exploited. My advice, watch video courses, or take a course in PHP and PHP/MariaDB/MySQL integration.
learning is the cure of your problems. if you just copy paste everything each time you'll keep coming back with the same questions since you don't know what's going on.
most of the things you need is just a few lines of code so you don't need to go through 500 pages of php.