php-general Digest 11 Oct 2010 13:15:21 -0000 Issue 6982

2010-10-11 Thread php-general-digest-help
php-general Digest 11 Oct 2010 13:15:21 - Issue 6982 Topics (messages 308616 through 308619): Re: What other languages do you use? 308616 by: Richard Quadling 308617 by: Russell Dias Re: zip and mac safari 308618 by: a...@ashleysheridan.co.uk Search inside file :)

[PHP] Search inside file :)

2010-10-11 Thread Jordan Jovanov
Hello everybody, I create one site where user can upload .zip files, but now I have one interesting problem. I need me PHP script where can have one edit box and button, user can input same text in edit box and when press on button he need to find the document who have text from edit button.

[PHP] Creating a WebService-Provider using an existing WSDL via SOAP

2010-10-11 Thread Kai Meder
Hello after having paused any PHP development in the last 2 years I'm just coming back to PHP 5.3. Could somebody clarify what the current state of WebService Development with PHP is? We have a rather complex, generated WSDL-Document fully describing a WebService- Interface. What is the

Re: [PHP] References in Sessions

2010-10-11 Thread Alexander Schrijver
On Mon, Oct 11, 2010 at 04:43:06PM +0200, Sebastian Detert wrote: Why don't you write a small function checking for invalid IDs and delete them and referenced subIDs? If you guess it's to hard/slow to find out all referenced subIDs you could change your Session array to an multi-dimensional

Re: [PHP] Unknown Table i field list

2010-10-11 Thread Ashley Sheridan
://www.ashleysheridan.co.uk __ Information from ESET Smart Security, version of virus signature database 5521 (20101011) __ The message was checked by ESET Smart Security. http://www.eset.com __ Information from ESET Smart Security, version of virus

Re: [PHP] Scripts running twice

2010-10-11 Thread Richard Quadling
On 11 October 2010 21:10, Alexis phplis...@antonakis.co.uk wrote: Hi, A very vague question here I am afraidI have quite a number of php scripts running on a WinXp box using the built in Scheduler. Everything worked fine for years until one day an update was done...cannot remember if it

Re: [PHP] Scripts running twice

2010-10-11 Thread Alexis
Thanks for the quick response...checked and no duplicates Richard On 11/10/10 14:14, Richard Quadling wrote: On 11 October 2010 21:10, Alexisphplis...@antonakis.co.uk wrote: Hi, A very vague question here I am afraidI have quite a number of php scripts running on a WinXp box using the

Re: [PHP] Scripts running twice

2010-10-11 Thread Richard Quadling
On 11 October 2010 21:20, Alexis phplis...@antonakis.co.uk wrote: Thanks for the quick response...checked and no duplicates Richard On 11/10/10 14:14, Richard Quadling wrote: On 11 October 2010 21:10, Alexisphplis...@antonakis.co.uk  wrote: Hi, A very vague question here I am afraidI

Re: [PHP] Scripts running twice

2010-10-11 Thread Alexis
Thanks for perservingnope just the two entries per script..one start and one stopalso checked the multi tab and that is set to just the once as well. One thing I forgot to say before is that even if I run the scripts manually, then they still run the twice.sorry about missing that

Re: [PHP] Unknown Table i field list

2010-10-11 Thread sueandant
Have you tried : $query = INSERT INTO formcom(fname, lname, email, comment, ip) VALUES ('$fname','$lname','$email'.'$comment','$ip') or die('error in query'); tholland - Original Message - From: Gary gp...@paulgdesigns.com To: php-general@lists.php.net Sent: Monday, October 11, 2010

Re: [PHP] Unknown Table i field list

2010-10-11 Thread a...@ashleysheridan.co.uk
That's the same query. One thing I did notice (and I wasn't sure if it was a typo as I saw a few in the original post) but you've used a period instead of a comma to separate the values in the query. It shouldn't produce the error you're seeing, but sometimes you never know! Thanks, Ash

[PHP] break out of ?php... midway thru' an if { } statement ?

2010-10-11 Thread Govinda
Hi everyone, - newbie preface - I finally got some time to come back to learning a little more PHP... and I am looking forward to lots more in coming months, with any luck. Anyway, as I was working towards the last

Re: [PHP] Unknown Table i field list

2010-10-11 Thread Gary
/) To unsubscribe, visit: http://www.php.net/unsub.php Just tried it, still the same message... Thank you for trying Gary __ Information from ESET Smart Security, version of virus signature database 5521 (20101011) __ The message was checked by ESET Smart Security. http

Re: [PHP] break out of ?php... midway thru' an if { } statement ?

2010-10-11 Thread Micky Hulse
If I understand the question correctly, I think the answer is yes. Maybe something like this: ?php if ($AlertUser2success): ? Normal HTML, or MT tags, here. ?php elseif ($foo == $bar): ? Normal HTML, or MT tags, here. ?php else: ? Normal HTML, or MT tags, here. ?php endif; ?

Re: [PHP] break out of ?php... midway thru' an if { } statement ?

2010-10-11 Thread Joshua Kehn
If I'm understanding the question right, yes you can. if($AlertUser2success != 0) { ? div class=pg_DIVmainText img class=divBGgradient style= src=images/BehindBox01.png alt= / div ?php include(); ? /div /div ?php } Regards, -Josh

Re: [PHP] break out of ?php... midway thru' an if { } statement ?

2010-10-11 Thread Govinda
If I understand the question correctly, I think the answer is yes. great!! Next time I will save myself so much time! Thank you guys! -G Alternative syntax for control structures http://php.net/manual/en/control-structures.alternative-syntax.php -- PHP General Mailing List

Re: [PHP] Unknown Table i field list

2010-10-11 Thread Gary
Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php __ Information from ESET Smart Security, version of virus signature database 5521 (20101011) __ The message was checked by ESET Smart Security. http://www.eset.com -- PHP General Mailing

Re: [PHP] Unknown Table i field list

2010-10-11 Thread Kranthi Krishna
echo $query; before $result = mysqli_query($dbc, $query); might be of help to understand what is going wrong copy that query and execute in phpMyAdmin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Unknown Table i field list Solved

2010-10-11 Thread Gary
Gary __ Information from ESET Smart Security, version of virus signature database 5522 (20101011) __ The message was checked by ESET Smart Security. http://www.eset.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php