Hello, I’m just trying to get the link and id name passing to other page, but when moving on the link the mouse, it shows only the first word of the ID.
Here is the example.
<?php
$id ="CURSO DEL RITE(CALEFACCIÓN,CLIMATIZACIÓN Y ACS)";
$link = "http://www.ginerllinares.es/prog_curs/sem/inscribir.php";
$path = "<a href=$link?id=$id>Inscripción curso</a>";
echo"$path"; // When displays this link. There's missing the $id text, only shows //first(CURSO) word.
?>
Is there any advice?
Thanks in advance
Arsen