HEX
Server: Apache
System: Linux iad1-shared-e1-19 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
User: austral3d (14892361)
PHP: 5.6.40
Disabled: NONE
Upload Files
File: /home/austral3d/fourdplan.com/webservices/updateInstances.php
<?php
    include ("Comun.php");
	$db = Conectar();
	
	//SXGRT
	$ids = ejecutar("select i.id from Descripcion d, Elemento e, Instancia i WHERE d.id = e.descripcion_id AND e.id = i.elemento_id AND d.id >= 227 AND d.id <= 310");
	$count = mysql_num_rows($ids);	
	for ($i = 0; $i < $count; $i++)
	{	
		$id = mysql_fetch_row($ids)[0];
		ejecutar("update Instancia SET fecha_planificacion = '0000-00-00', fecha_preparacion_material = '0000-00-00', fecha_armado = '0000-00-00', fecha_soldadura = '0000-00-00', fecha_granallado = '0000-00-00', fecha_pintura = '0000-00-00', fecha_liberacion = '0000-00-00', fecha_despacho = '0000-00-00'  WHERE id = '$id'");
	}
	
	echo("ok");
 ?>