Re: [PHP-DB] input statement in php

2010-07-27 Thread Richard Quadling
On 26 July 2010 15:38, Bavithra R  wrote:
> hi friends..
>
>
> Is there any equivalent statement in php  for "scanf" or "cin" in c or c++?
> That is without using html and creating forms.

WOW. Completely surprised by the two responses that were given.



STDIN is a predefined resource, so no need to fopen()/fclose() it.

Hope this helps.

Regards,

Richard Quadling.

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP-DB] input statement in php

2010-07-26 Thread Daevid Vincent
> -Original Message-
> From: Bavithra R [mailto:bavithr...@gmail.com] 
> Sent: Monday, July 26, 2010 7:39 AM
> To: php-db@lists.php.net
> Subject: [PHP-DB] input statement in php
> 
> hi friends..
> 
> 
> Is there any equivalent statement in php  for "scanf" or 
> "cin" in c or c++?
> That is without using html and creating forms.
> 
> 
> Thanks in advance
> regards
> --Bavithra.R

There unfortunately isn't any scanf() but if you're trying to get user
input on a CLI, then you can either use the argv/argc options or do
something like this tutorial does.

http://www.ehow.com/how_5321606_prompt-line-interface-using-php.html


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP-DB] input statement in php

2010-07-26 Thread HallMarc Websites

>hi friends..


>Is there any equivalent statement in php  for "scanf" or "cin" in c or c++?
>That is without using html and creating forms.


>Thanks in advance
>regards
>--Bavithra.R

No, there are no equivalents in PHP.



__ Information from ESET Smart Security, version of virus signature
database 5314 (20100726) __

The message was checked by ESET Smart Security.

http://www.eset.com

 

__ Information from ESET Smart Security, version of virus signature
database 5314 (20100726) __

The message was checked by ESET Smart Security.

http://www.eset.com
 


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DB] input statement in php

2010-07-26 Thread Bavithra R
hi friends..


Is there any equivalent statement in php  for "scanf" or "cin" in c or c++?
That is without using html and creating forms.


Thanks in advance
regards
--Bavithra.R