Quiero enviar unas variables a una web despues de hacer un INSERT, pero no se como hacerlo, el codigo que tengo es este.
Código PHP:
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "insertar_msj")) {
$insertSQL = sprintf("INSERT INTO incidencias (nombre, fecha, texto, insalon) VALUES (%s, %s, %s, %s)",
GetSQLValueString($_POST['de'], "text"),
GetSQLValueString($_POST['fecha'], "date"),
GetSQLValueString($_POST['texto'], "text"),
GetSQLValueString($_POST['salon'], "text"));
$texto_sms = $_POST['texto'];
$salon_sms = $_POST['text_salon'];
"http://www.pane.com/gateway/mtsms1.php?moviles=***&prioridad=0&remitente=$salon_sms¬ify=AEX&ruta=2&contenido=$texto_sms&user=***&password=**&idenvio=20100928190600001");
Un saludo