'example2.php?subject='.urlencode($row['id'])'&id='.intval($id);
what is not being parsed correctly? It looks like
‘&id=’.intval($id)
is not well structure.
help please
'example2.php?subject='.urlencode($row['id'])'&id='.intval($id);
what is not being parsed correctly? It looks like
‘&id=’.intval($id)
is not well structure.
help please
this structure is all right, but right before it one operator is missed.
'example2.php?subject='.urlencode($row['id']).'&id='.intval($id);