Benim kod biçimlendirme için üzgünüm. Araç çubuğu gitmişti ...
Ben bir mysql db bazı verileri eklemek istediğiniz. Ben php bir fonksiyon yazmıştım:
function add_ID($ID, $token) {
$add = "INSERT INTO ids (ID, token) VALUES ('$ID', '$token')";
mysql_query($add);
echo 'added successfully';
}
if(isset($_GET['addDeviceID'])) {
add_ID($_GET['ID'], $_GET['token']);
}
In the URL-Field of my Browswe I'am calling the function like that: http://www.justanexample.com/example.php?ID=123123123&token=qwertzuiop
Bu çalışıyor.
If I put a space into either one of the parameters for example like that: http://www.justanexample.com/example.php?ID=123123 123&token=qwertzuiop
Hiçbir şey benim mysql db eklendi.
Would be great to get some help :) Thank you!