Escribe a "PHP - Programación" <[email protected]>,


--

Jairo Ochoa

Dropbox: Almacenamiento gratis / Free online backup
https://www.dropbox.com/referrals/NTg2Njc1MTg5



El 5 de diciembre de 2011 03:10, MIguel Flores Franco <[email protected]
> escribió:

> Pero en esta lista no se tratan temas de programación PHP
>
> Miguel
>
>
> -----Mensaje original-----
> De: [email protected] [mailto:
> [email protected]]
> En nombre de Fabricio Holguin
> Enviado el: domingo, 04 de diciembre de 2011 01:20 p.m.
> Para: [email protected]
> Asunto: Re: [Ovillo] Closing a file (PHP)
>
>
>
>
>
>
> Hola Miguel,
>
> Cuando corro la página en el servidor el resultado es un error
>
> Parse error: syntax error, unexpected T_NS_SEPARATOR in
> c:\apache2.2\htdocs\robauto\processorder.php on line 76
>
> en el código la linea 76 viene siendo                 ."\t. $address."\n";
> me habla de syntax error ¿acaso escribí algo de más o me falta algo?
>
> Gracias,
>
> Fabricio
> http://hlgns.net/
> http://hlgn.net/
>
> Remote Support
> http://hlgn.showmypc.com/
>
>
>
>
>
>
> > From: [email protected]
> > To: [email protected]
> > Date: Sat, 3 Dec 2011 02:24:46 -0500
> > Subject: Re: [Ovillo] Closing a file (PHP)
> >
> > Hola!
> > y ¿que es lo que deseas, una crítica o qué?
> > no indicas que ayuda requieres, especifica mejor-
> >
> > Miguel
> >
> > Miguel Flores Franco
> > Graphic Design & Standard based Web Design
> > http://pe.linkedin.com/in/mikersson
> > http://www.pixelperu.net
> > Phone +51 991 592 446 (Perú) • +48 28141587 (Denmark)
> >
> >
> > -----Mensaje original-----
> > De: [email protected]
> > [mailto:[email protected]]
> > En nombre de Fabricio Holguin
> > Enviado el: viernes, 02 de diciembre de 2011 06:29 p.m.
> > Para: [email protected]
> > Asunto: [Ovillo] Closing a file (PHP)
> >
> >
> >
> >
> >
> >
> > Saludos,
> >
> >
> >
> > Por este medio quisiera extender un saludo a todos y desear si me
> > pueden ayudar con un ejemplo que he trabajado por algunas semanas y no
> > me da el resultado deseado.  Talves alguien tenga un poco mas de
> conocimiento.
> >  La compañia es un taller de autos.  Gracias por antemano.
> >
> >
> >
> > El código es el siguiente:
> >
> >
> >
> >
> >
> > <html>
> >
> >
> >
> > <head>
> >
> >
> >
> >     <title>Roberto's Auto Parts - Order Results</title>
> >
> >
> >
> > </head>
> >
> >
> >
> > <body>
> >
> >
> >
> > <h1>Roberto's Auto Parts</h1>
> >
> >
> >
> > <h2>Order Results</h2>
> >
> >
> >
> > <?php
> >
> >
> >
> > echo "<p>Order processed at ".date('H:i, jS F Y')."</p>";
> >
> >
> >
> > echo "<p>Your order is as follows: </p>";
> >
> >
> >
> > $totalqty = 0;
> >
> > $totalqty = $tireqty + $oilqty + $sparkqty;
> >
> >
> >
> > echo "Items ordered: ".$totalqty."<br />";
> >
> >
> >
> > if ($totalqty == 0) {
> >
> >
> >
> >    echo "You did not order anything on the previous page!<br />";
> >
> >
> >
> > } else {
> >
> >
> >
> > if ($tireqty > 0) {
> >
> >    echo $tireqty." tires<br />";
> >
> > }
> >
> >
> >
> > if ($oilqty > 0) {
> >
> >    echo $oilqty." bottles of oil<br />";
> >
> > }
> >
> >
> >
> > if ($sparkqty > 0) {
> >
> >    echo $sparkqty." spark plugs<br />";
> >
> > }
> >
> >
> >
> > }
> >
> >
> >
> >
> >
> > $totalamount = 0.00;
> >
> >
> >
> > define('TIREPRICE', 100);
> >
> > define('OILPRICE', 10);
> >
> > define('SPARKPRICE', 4);
> >
> >
> >
> > $totalamount = $tireqty * TIREPRICE
> >
> >          + $oilqty * OILPRICE
> >
> >          + $sparkqty * SPARKPRICE;
> >
> >
> >
> > $totalamount=number_format($totalamount, 2, '.', '');
> >
> >
> >
> > echo "<p>Total of order is $".$totalamount."</p>";
> >
> > echo "<p>Address to ship to is ".$address."</p>";
> >
> >
> >
> > $outputstring = $date."\t".$tireqty." tires \t".$oilqty." oil\t"
> >
> >                 .$sparkqty." spark plugs\t\$".$totalamount
> >
> >                 ."\t. $address."\n"; (posible error talves!)
> >
> >
> >
> > //open file for appending
> >
> > @ $fp = fopen("$DOCUMENT_ROOT/../orders/orders.txt", 'ab');
> >
> >
> >
> > flock($fp, LOCK_EX);
> >
> >
> >
> > if (!$fp) {
> >
> > echo "<p><strong> Your order could not be processed at this time.
> >
> >      Please try again later.</strong></p> <BR><BR>__________
> > Information from ESET Smart Security, version of virus signature
> > database 6679
> > (20111202) __________<BR><BR>The message was checked by ESET Smart
> > Security.<BR><BR><A
> > HREF="http://www.eset.com";>http://www.eset.com</A><BR>
> > <BR><BR>__________ Information from ESET Smart Security, version of
> > virus signature database 6679 (20111202) __________<BR><BR>The message
> > was checked by ESET Smart Security.<BR><BR><A
> > HREF="http://www.eset.com";>http://www.eset.com</A><BR>
> > </body></html>";
> >
> > exit;
> >
> > }
> >
> >
> >
> > fwrite($fp, $outputstring, strlen($outputstring));
> >
> > flock($fp, LOCK_UN);
> >
> > fclose($fp);
> >
> >
> >
> > echo "<p>Order written.</p>";
> >
> >
> >
> > ?>
> >
> > </body>
> >
> >
> >
> > </html>
> >
> >
> > Thanks,
> > Fabricio
> > http://hlgns.net/
> > http://hlgn.net/
> >
> > Remote Support
> > http://hlgn.showmypc.com/
> >
> >
> >
> >
> >
> >
> > _______________________________________________
> > Lista de distribución Ovillo
> > Para escribir a la lista, envia un correo a [email protected]
> > Puedes modificar tus datos o desuscribirte en la siguiente dirección:
> > http://lists.ovillo.org/mailman/listinfo/ovillo
> >
> > _______________________________________________
> > Lista de distribución Ovillo
> > Para escribir a la lista, envia un correo a [email protected]
> > Puedes modificar tus datos o desuscribirte en la siguiente dirección:
> > http://lists.ovillo.org/mailman/listinfo/ovillo
>
>
> _______________________________________________
> Lista de distribución Ovillo
> Para escribir a la lista, envia un correo a [email protected] Puedes
> modificar tus datos o desuscribirte en la siguiente dirección:
> http://lists.ovillo.org/mailman/listinfo/ovillo
>
>
> __________ Information from ESET Smart Security, version of virus signature
> database 6682 (20111204) __________
>
> The message was checked by ESET Smart Security.
>
> http://www.eset.com
>
>
>
> __________ Information from ESET Smart Security, version of virus signature
> database 6682 (20111204) __________
>
> The message was checked by ESET Smart Security.
>
> http://www.eset.com
>
>
> _______________________________________________
> Lista de distribución Ovillo
> Para escribir a la lista, envia un correo a [email protected]
> Puedes modificar tus datos o desuscribirte en la siguiente dirección:
> http://lists.ovillo.org/mailman/listinfo/ovillo
>
_______________________________________________
Lista de distribución Ovillo
Para escribir a la lista, envia un correo a [email protected]
Puedes modificar tus datos o desuscribirte en la siguiente dirección: 
http://lists.ovillo.org/mailman/listinfo/ovillo

Responder a