e, photos and so on.
>
> If you like, run through http://www.flowmarketing.co.uk and fill in the
> form where you get stuck. It's obviously a work in progress :-) and I'll
> complete the page that you end up at.
>
> By all means email me the website and I can be more specific.
>
> Good luck :-)
>
> Cheers
> J
> http://www.johnallsopp.co.uk
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
--
Zareef Ahmed
http://www.zareef.net
ion.
>
>
> Thanks in advance!
>
--
Zareef Ahmed :: A PHP Developer in India ( Delhi )
Homepage :: http://www.zareef.net
n line 53
>
> Warning: mysql_fetch_assoc(): supplied argument is not a valid MySQL result
> resource in /home/meee/public_html/somedir/test.php on line 55
>
> Warning: Invalid argument supplied for foreach() in
> /home/meee/public_html/somedir/test.php on line 55
>
> --
> I am looking forward to when I have enough of my bearings that I can just
> cruise around all the various docs and figure out my own answers. Now
> there are just so many unknowns, I often can't tell which way to even look
> to solve the issues.
> -G
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
--
Zareef Ahmed :: A PHP Developer in India ( Delhi )
Homepage :: http://www.zareef.net
On Sun, Jul 12, 2009 at 11:27 PM, James Colannino wrote:
> Zareef Ahmed wrote:
>
> > You should get a "headers already sent output started at " kind of
> error
> > if you have enabled error reporting with display_errors ON.
>
> Actually, I did. I just d
s some application setups )
but I am wondering why you are not getting information about exact place
where output is being started.
You should get a "headers already sent output started at " kind of error
if you have enabled error reporting with display_errors ON.
>
> James
On Sun, Jul 12, 2009 at 8:42 PM, tedd wrote:
> At 8:24 PM +0530 7/12/09, Zareef Ahmed wrote:
>
>> On Sun, Jul 12, 2009 at 6:32 PM, tedd <<mailto:tedd.sperl...@gmail.com>
>> tedd.sperl...@gmail.com> wrote:
>>
>> Hi gang:
>>
>> I am top posti
On Sun, Jul 12, 2009 at 6:32 PM, tedd wrote:
> Hi gang:
>
> I am top posting only to show that the following post makes no sense as to
> who said what.
>
> At what point here Zareef, did you think you were helping anyone? Or is
> this more of your "I'm going
quot;I am having
problem" statement is not good enough.
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
--
Zareef Ahmed :: A PHP Developer in India ( Delhi )
Homepage :: http://www.zareef.net
any of the 2 following sets of code where there is 1
> instance
> > > of
> > > escaping, the data gets entered with the apostrophe but I don't see any
> > > back
> > > slash entered.
> > >
> > > The part that I am concerned about is if I
moved the slashes from any external
source including databases...
It was there to make the life of developer somewhat easier ()...
magic quotes things are deprecated and completely will be removed in PHP 6
>
> $new_fname = mysql_real_escape_string($new_fname);
> $new_lname = mysql_real_escape_string($new_lname);
>
>
> $result = mysql_query("SELECT * FROM phonedir WHERE fname = '$new_fname' &&
> lname = '$new_lname'");
> $num_rows = mysql_num_rows($result);
>
> if($num_rows > 0)
>
> {
>echo $fname." ".$lname." already exists";
> }
>
> else
>{
>
> mysql_query("INSERT INTO phonedir
> (fname, lname) VALUES('$new_fname','$new_lname')")
> or die(mysql_error());
>
>
>
> or
>
>
> mysql_query("INSERT INTO phonedir
> (fname, lname)
>
> VALUES('".mysql_real_escape_string($new_fname)."','".mysql_real_escape_string($new_lname)."')")
> or die(mysql_error());
>
>
>
--
Zareef Ahmed :: A PHP Developer in India ( Delhi )
Homepage :: http://www.zareef.net
ng as
it works
Sorry for TOP posting This mailing list also don't force us to be good
:)
Zareef Ahmed
On Sun, Jul 12, 2009 at 4:50 AM, Eddie Drapkin wrote:
> On Sat, Jul 11, 2009 at 5:37 PM, tedd wrote:
> > At 3:34 AM +0700 7/12/09, Lenin wrote:
> >>
> >
On Sat, Jul 11, 2009 at 6:14 AM, Govinda wrote:
> On Jul 10, 2009, at 6:34 PM, Zareef Ahmed wrote:
>
> heredoc was there to work with the strings... why you want to use
>> functions into that?
>>
>
> I'm lazy. Like to type less. ;-)
It is well known fact th
w.php.net/unsub.php
> >
> >
>
> Your error handling is logging the errors, not displaying them to the
> screen. Check the php ini file settings for that.
>
> --
>
> Bastien
>
> Cat, the other other white meat
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
--
Zareef Ahmed :: A PHP Developer in India ( Delhi )
Homepage :: http://www.zareef.net
; govinda.webdnat...@gmail.com
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
--
Zareef Ahmed :: A PHP Developer in India ( Delhi )
Homepage :: http://www.zareef.net
of your case.
Zareef Ahmed
On Sat, Jul 11, 2009 at 3:50 AM, Daniel Brown wrote:
> On Fri, Jul 10, 2009 at 18:11, Chris Payne
> wrote:
> >
> > Sorry I post at the top because i'm legally blind and it's easier but
> > i'll try to post at the bottom :-)
>
As a dirty trick you can put following line on the top of your script,
it will work
ob_start();
But you should try to know why it is not working, and what exactly
ob_start will impact your application and What is the thing called
"Output Buffering".
Zareef Ahmed
On 3/12/08, Hiep Nguy
eed these two computers to coordinate a little and
> didn't want to use a server in between and so I was thinking of
> establishing a direct connection between them..
If you have ruled out web server and ssh, then you can use ftp using PHP or
use NFS mounting.
Zareef Ahmed wrote
source.
BUT remember, using rsync is always a better solution, and file_get_contents
and file functions are resource hungry, specially they will consume more
memory of your system.
--
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
--
Zareef Ahmed
http://www.zareef.net
A PHP Developer in India
after
certain number of lines or predefined life time of php script, any
suggestion?
Thanks and Regards
Zareef Ahmed
On 3/6/08, Chris <[EMAIL PROTECTED]> wrote:
>
> Zareef Ahmed wrote:
> > Hi All,
> >
> >I am looking into the concepts behind memory manage
HI Chirs,
On 3/6/08, Chris <[EMAIL PROTECTED]> wrote:
>
> Zareef Ahmed wrote:
> > Hi Chris,
> >
> > Thanks for such quick response.
> >
> > quite good suggestion, but my application is using a framework and lots
> > of includes and even aut
?
--
Zareef Ahmed
http://www.zareef.net
A PHP Developer in India
other :)
Zareef Ahmed
On 7/3/07, Timothy Murphy <[EMAIL PROTECTED]> wrote:
I'm looking for a PHP/MySQL "calendar booking form",
which I am sure must have been done a million times.
This will show a calendar on the web mirroring a MySQL table.
Each entry in the MySQL table will sho
.
Zareef Ahmed
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
,
Rightly I got good adjectives ;)
Well I am using CVS for all of my projects and do regular backups. Above all
filesystem restore is also available in most of such cases.
Lets close this thread, we people really have many meaningful questions to
answers.
Zareef Ahmed
- Original Message
Original Message -
From: "Rory Browne" <[EMAIL PROTECTED]>
To: "Zareef Ahmed" <[EMAIL PROTECTED]>
Cc:
Sent: Sunday, February 05, 2006 8:39 AM
Subject: Re: [PHP] Reverse Engineering of Smarty
If you don't have backups, then:
1: Why do you not
.
Zareef Ahmed
Hi,
Please visit
http://www.php.net/~derick/meeting-notes.html
- Original Message -
From: "Yannick Warnier" <[EMAIL PROTECTED]>
To: "PHP General List"
Sent: Wednesday, February 01, 2006 11:02 AM
Subject: [PHP] PHP6 Roadmap
> Hello,
>
> Is a roadmap for PHP6 already available some
Hi Peter,
Code you are using is for php version 5. That is one in only reason.
You need to install PHP version 5 to run this code or just do it as simple
$var type declaration.
Zareef Ahmed
- Original Message -
From: "Peter Lauri" <[EMAIL PROTECTED]>
To:
Sent: T
France is so late ? ;)
zareef ahmed
- Original Message -
From: "Michelle Konzack" <[EMAIL PROTECTED]>
To:
Sent: Friday, January 06, 2006 1:37 PM
Subject: [PHP] Re: Re: HAPPY NEW YEAR!!
> A little bit late, but from France:
>
> Bonne Année!
>
> G
read about "foreach" function.
Zareef Ahmd
- Original Message -
From: "Ahmed Abdel-Aliem" <[EMAIL PROTECTED]>
To:
Sent: Thursday, January 05, 2006 7:58 PM
Subject: [PHP] printing keys and values of array
Hi
i need some help with printing an array, i wo
Hi,
How you are sending the data to that script? It must be availble in $_POST,
$_GET, or $_REQUEST, depends how you are sending it.
Zareef Ahmed
- Original Message -
From: "Jamie Kemp" <[EMAIL PROTECTED]>
To:
Sent: Friday, December 30, 2005 8:57 PM
Subject: [PHP]
STATEMENT where uniquefield like
$row['uniquefield']";
mysql_query($newquery);
}
if you really need to fetch only one record at a time, you can use the LIMIT
keyword in your SQL statement, and can create the script as needed.
Zareef Ahmed
- Original Message -
From: "Chr
Hi,
There are a lot of PHP frameworks like Mojavi, Phrame, php.MVC,
phpwebtk, Horde.
My choice is Mojavi.
BTW Zend is also doing some great work on it.
Zareef Ahmed
- Original Message -
From: "Shawn McKenzie" <[EMAIL PROTECTED]>
To:
Sent: Friday, December
- Original Message -
From: "Nanu Kalmanovitz" <[EMAIL PROTECTED]>
To:
Sent: Thursday, December 22, 2005 4:22 AM
Subject: [PHP] PHP is OK in IE but not in Netscape
> Hi
>
> The http://www.kalmanovitz.co.il/hello.php file appears OK in M$-IE but
> not in Netscape 7.0.
Strange... Can you
Hi,
You can try pear package HTML_AJAX
http://pear.php.net/package/HTML_AJAX
Zareef Ahmed
- Original Message -
From: "Erfan Shirazi" <[EMAIL PROTECTED]>
To: ; "Niklas Palmqvist" <[EMAIL PROTECTED]>
Sent: Monday, December 19, 2005 6:04 AM
Subj
Hi,
use microtime function.
Zareef Ahmed
- Original Message -
From: "Mathijs" <[EMAIL PROTECTED]>
To:
Sent: Monday, December 19, 2005 5:58 AM
Subject: [PHP] How to get a unixtime with micro/mille seconds
> Hello,
>
> I Want to have a unique tim
Hi,
Using AJAX or JSRS you can do this.
See
http://www.ashleyit.com/rs/main.htm
Zareef Ahmed
- Original Message -
From: "Gustav Wiberg" <[EMAIL PROTECTED]>
To: "PHP General"
Sent: Sunday, December 18, 2005 2:28 PM
Subject: [PHP] Load from db into -li
discussion
lists, because some time you may get very bad (!) response from the group
members if you are asking very easy or normal questions.
Zareef Ahmed
- Original Message -
From: "Erik Johnson" <[EMAIL PROTECTED]>
To:
Sent: Sunday, December 18, 2005 10:59 AM
Subject: R
sure of that further up the page).
> $page = "one"; never happens (you already pulled that one out earlier).
> $page = "two"; never happens (you already pulled that one out earlier).
>
Johnson, make a note of it.
you can also read about "switch" statement.
GET['page'], it is true
then it will assign the value of $_GET['page'] to $page variable, otherwise
it will be set to null value.
You are 14?? Welcome to the wonderfull world of PHP programming.
Zareef Ahmed
PHP Expert C
/mysql_ref.php
Zareef Ahmed
- Original Message -
From: "Anasta" <[EMAIL PROTECTED]>
To:
Sent: Sunday, December 18, 2005 7:41 AM
Subject: [PHP] insert to DB
> It just wont insert new data into DB--any ideas as i have gone over and
> over.
>
>
>
>
recommendation, it is better to use isset function to check if variable
has been set or not.
Zareef Ahmed
- Original Message -
From: "Erik Johnson" <[EMAIL PROTECTED]>
To:
Sent: Saturday, December 17, 2005 11:05 PM
Subject: [PHP] Someone please help me with this PHP sc
- Original Message -
From: "Aftab Alam" <[EMAIL PROTECTED]>
To:
Sent: Tuesday, December 13, 2005 11:20 PM
Subject: [PHP] EXPORT DATA
> Hi all,
>
> How can i export excel data to PostgresSQL using PHP.
>
http//ww.phpclasses.org is good place to search. you
Hi Dave,
You can look for the value of $_SERVER['REMOTE_ADDR'], and then you can
serve users as per your preferences.
Zareef Ahmed
- Original Message -
From: "Dave Carrera" <[EMAIL PROTECTED]>
To:
Sent: Tuesday, December 13, 2005 11:06 AM
Subject: [PHP
n what exactly you are doing? print_r($_POST) should show the
all values of the form including a textarea.
What do you mean by "pasted in"?
Zareef Ahmed
> Works fine for Mozilla, etc.
>
> print_r($_POST) shows several and values just fine.
>
> Thanks
>
> --
Hi MARG,
It will be better if you can provide the code here and what error you are
getting.
BTW header function is the key here.
Zareef Ahmed
- Original Message -
From: "Miles Thompson" <[EMAIL PROTECTED]>
To:
Sent: Sunday, December 11, 2005 12:33 PM
Subject: Re: [
- Original Message -
From: "Robert Cummings" <[EMAIL PROTECTED]>
To: "Zareef Ahmed" <[EMAIL PROTECTED]>
Cc: "Aaron Koning" <[EMAIL PROTECTED]>; "PHP-General"
Sent: Saturday, December 10, 2005 11:40 AM
Subject: Re: [PHP] simple-i
- Original Message -
From: "Robert Cummings" <[EMAIL PROTECTED]>
To: "Zareef Ahmed" <[EMAIL PROTECTED]>
Cc: "Aaron Koning" <[EMAIL PROTECTED]>; "PHP-General"
Sent: Saturday, December 10, 2005 11:03 AM
Subject: Re: [PHP] simple-i
( but in my view it is feature) normally.
for eaxample:
In this script session variable will not be set and will not available on
other
pages, because sessions also works with headers and headers executed (sent)
in
reverse order.
Am I correct?
Hi Paul,
Why you are closing your connection before finishing your work on
the database?
Zareef Ahmed
- Original Message -
From: "Paul Jinks" <[EMAIL PROTECTED]>
To:
Sent: Friday, December 09, 2005 6:50 AM
Subject: [PHP] PHP/MySql noob falls at first h
--
Zareef Ahmed :: A PHP Developer in India ( Delhi )
Homepage :: http://www.zareef.net
g service provider, somewhere I
read about HOSTWAY. they are in PHP 5 hosting.
Zareef Aahmed
Please can some more experienced people let me have their views on this?
> Many thanks,#
> Tom
>
> On 30/09/05, Joe Wollard <[EMAIL PROTECTED]> wrote:
> > The first two re
This is a test mail. Please igno
re it --
Zareef Ahmed :: A PHP Developer in India ( Delhi )
Homepage :: http://www.zareef.net
Hi,
Look for phpcollab.
zareef ahmed
On 5/4/05, Neal Carmine <[EMAIL PROTECTED]> wrote:
> Hi,
>
> There are a lot of open source project management packages. .Project,
> netoffice and others. Does anyone have a recommendation on the best overall
> project management
HI,
Look for $_SERVER['REQUEST_URI'];
But Dear first you should search the documentation , it is very easy
to notice if you can use phpinfo();
zareef ahmed
On Apr 2, 2005 8:12 AM, HarryG <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I want to retrieve the complete url
Hi,
First of all set error reporting to E_ALL, you may get the error string.
zareef ahmed
On Apr 1, 2005 8:30 AM, Ben Cheng <[EMAIL PROTECTED]> wrote:
> Hi I'm using the mail() function to send email and I know it's failing
> because it's returning a false but ho
Hi ,
read about uniqid() function, it may be usefull.
zareef ahmed
On Apr 1, 2005 12:03 PM, Rob Agar <[EMAIL PROTECTED]> wrote:
> hey up all,
>
> anyone have a snippet for generating a unique booking reference string,
> say 6-10 characters long? The kind of thing you g
Hi Chris,
I tried to reproduce the problem with vertsoin 4.3.3 and 5, and its
working fine(producing same string).
If you have not find a bug in bug database why not submit a new bug?
anyway changing single quotes to double may help ;)
zareef ahmed
On Apr 1, 2005 2:36 AM, Chris Francy
Hi All,
Is it possible to get client's machines network properties like
Netmask, Default gateway, I can get the IP address, but unable to get
other details.
zareef ahmed
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
t.
>
> What happens when you run:
>
> echo $this;
>
> ..your query is going to save the same thing.
>
> try serialize($this) instead.
and do not forgot to unserialize($fieldvalue) ;)
zareef ahmed
>
> -Robby
>
> --
> /***
On Mon, 14 Mar 2005 23:30:51 +, Alister Bulman <[EMAIL PROTECTED]> wrote:
> On Mon, 14 Mar 2005 19:14:37 +0530, Zareef Ahmed <[EMAIL PROTECTED]> wrote:
> > Hi All,
> >
> > I have a function to load the classes and return the object.
>
urn new $ClassName();
> > }
> >
> > Its working fine.
> >
> > But Zend Studio's Code completion is not working for this type of
> > object, Any hints?
> >
> Zareef,
> In Zend Studio 4.0 (not sure about earlier versions) you can use a
> "class typ
gt; require_once "Class.bar.inc";
> }
> ?>
>
> It will slow things down a bit, loading classes you don't need, but
> hopefully Zend Studio will pick up on all the classes that way.
Yes Zend Studio works fine in this way. Actually function was created
to loa
Hi All,
I have a function to load the classes and return the object.
function LoadClass($ClassName)
{
require_once("Class.$ClassName.inc");
return new $ClassName();
}
Its working fine.
But Zend Studio's Code completion is not working for this type of
object, Any hints?
On Mon, 7 Mar 2005 10:02:32 +0530, anirudh dutt <[EMAIL PROTECTED]> wrote:
> On Mon, 7 Mar 2005 08:37:52 +0530, Zareef Ahmed <[EMAIL PROTECTED]> wrote:
> > Hi Robert,
> >
> > Please take a look at php manual and try to know something about
> > $_POST, $_G
) {
> $table_of_contents[] = "
> title='{$article['title']}'>{$article['title']}
> $article['content'] = substr($article['content'], 0 200);";
change these two lines to
title='{$article['title']}
ue is not here.
> $sendto = "$row[1]";
> echo "Row one output = $sendto";
> mail ($_POST['sendto'],'Testing', $body, $headers);
Again you are sending the mail to same person very time.
> echo "Sent to $row[1]";}
Again problem.
&g
Hi Ramya,
Try Zend Studio from zend.com
zareef ahmed
On Fri, 18 Feb 2005 22:22:34 +0530, Ramya Ramaswamy <[EMAIL PROTECTED]> wrote:
> Hey people,
>
> Am in the look out for a code analyzer for PHP...can somebody help me
> out with that?Please...
>
> Many Thankx
>
Hi,
Please Visit
http://pear.php.net/package/Inline_C
may be usefull
zareef ahmed
On Fri, 18 Feb 2005 01:19:19 -0800, N Deepak <[EMAIL PROTECTED]> wrote:
> Hi,
>
> Is there a way to invoke C functions in a library (.so) from PHP?
> Like Xs in Perl?
>
> Than
Hi,
News is very old it was published in june 2000.
zareef ahmed
On Thu, 10 Feb 2005 07:24:27 -0600, Steve Buehler <[EMAIL PROTECTED]> wrote:
> Shouldn't have taken your Cat to school with a bag of catnip. That was
> asking for trouble. :)
>
> Steve
>
> At 0
> doesnt work.
> Can someone please explain this to me? What does the "->" do? How to
> solve that problem above?
-> operator used to accsses the method and properties of an object
Here B is an object and var1 is an member variable.
do a
print_r($B->var1);
Hi Michael,
It would be helpful if you elaborate your problem with details
like PHP version, OS, Service etc. It will increase the chances of a
good response.
zareef ahmed
On Tue, 18 Jan 2005 11:06:16 +1000, Michael Leung
<[EMAIL PROTECTED]> wrote:
> Hi all,
>I have
Please read install.txt carefully, it has a section on this problems,
if PHP.INI is fine., then you need to copy some of the dlls available
in dlls folder to your system folder.
zareef ahmed
On Mon, 10 Jan 2005 22:38:41 +0530, Sagar C Nannapaneni
<[EMAIL PROTECTED]> wrote:
> > Pl
extract certain data (this email contains Name, email and
> > telephone of a person in a standar html) and insert this data in MySQL
> > database. It this posible?
> >
> > I'm a newbie in PHP/MySQL, any ideas?
> >
> > Thanks,
> >
regular expressions are th
W php3 is outdated and I never see it running on Apache 2 with win xp.
zareef ahmed
> add.php
>
> $ID = uniqid("userID");
>
> $db = mysql_connect("localhost","root","halfdinner");
>
> mysql_select_db (userpass);
>
>
Hi,
You can user stripslashes() function to remove them if gpc quotes
is creating some kind of confusion in your mind. BTW these quotes are
important in some security related situations.
zareef ahmed.
On Thu, 30 Dec 2004 20:15:06 -0500, John Holmes
<[EMAIL PROTECTED]> wrote:
&g
Hi Ali,
Visit
http://zareef.users.phpclasses.org/browse/class/21.html
You will find a lot of code.
zareef ahmed
On Tue, 28 Dec 2004 13:12:14 +1030, Ali <[EMAIL PROTECTED]> wrote:
> Hi everyone...
> can anyone lead me to a good tutorial on authentication...it wud be good if
&
I agree with John Holmes that it is targeted at PHP. It is really
wonderfull thing to know that google, yahoo can detect my php code on
my site. These news item written by total uninformed (or Illinformed )
persons.
zareef ahmed
--
Zareef Ahmed :: A PHP Developer in India ( Delhi )
Homepage
will not run. So Use $_POST, $_GET etc. instead of using old long
$HTTP_*_* style.
zareef ahmed
On Mon, 27 Dec 2004 18:31:21 +0300, Burhan Khalid <[EMAIL PROTECTED]> wrote:
> kalinga wrote:
> > Dear all,
> > Is it possible to pass the entire $HTTP_POST array to a functio
HI,
Install instruction file contains all information you need to enable
some of the exetension.
HINT :: dlls folder
zareef ahmed
On Tue, 28 Dec 2004 18:26:52 +0100, Steven Spierenburg
<[EMAIL PROTECTED]> wrote:
> Hi There,
>
> I recently installed PHP and have two things
/
zareef ahmed
On Tue, 28 Dec 2004 16:41:57 +0600, kalinga <[EMAIL PROTECTED]> wrote:
> typo3, it's a good one..
>
> try it ;-)
>
> vk.
>
> On Tue, 28 Dec 2004 11:00:32 +0100, Javier Leyba
> <[EMAIL PROTECTED]> wrote:
> >
> > Hi
> >
>
Hi,
Visit http://www.sitepoint.com/article/phps-creator-rasmus-lerdorf/39
Zareef ahmed
-Original Message-
From: Reinhart Viane [mailto:[EMAIL PROTECTED]
Sent: Wednesday, December 01, 2004 8:09 PM
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: RE: [PHP] Very fresh to php
I
o e.g. "C:\php\ext"
Do you have every file (you have loaded in php.ini) in your extension
directory i.e in c:\php\ext?
Zareef ahmed
>Any suggestions?
Thanks in advance.
Marcel
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hi
use
Print $_SERVER['HTTP_REFRER'];
But some time browser do not send it properly so please check it with
another browser if fails.
Zareef Ahmed
-Original Message-
From: John Holmes [mailto:[EMAIL PROTECTED]
Sent: Thursday, November 18, 2004 3:39 AM
Cc: [EMAIL
ere is the code at the top of my script:
> ini_set("display_errors", "on"); //also tried "Off"
>
> ini_set("error_log", "/AutoSch/error.log");
This problem may be related to your path.
Try to user $_SERVER['DOCUMENT
way to manage this as sometime value may be too long
to store in $_GET variable.
Do You get any error on unserialization?
Zareef ahmed
-Original Message-
From: Mike Smith [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 10, 2004 10:14 PM
To: [EMAIL PROTECTED]
Subject: [PHP] Array to
Hi,
Well this time I will take the responsibility :)
Here is the link about mail sending in PHP .
http://www.phpclasses.org/browse/package/9.html
Zareef ahmed
-Original Message-
From: Greg Donald [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 10, 2004 8:48 PM
To: [EMAIL
from in php.ini
Try
Mail("[EMAIL PROTECTED]","test subject","test
body","from:[EMAIL PROTECTED]");
If it fails contact your ISP.
Additionally read
http://www.chilkatsoft.com/faq/Smtp550.html
Zareef ahmed
-Original Message-
From: Garth Hapgo
Hi,
Use
print $_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'];
Zareef Ahmed
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 10, 2004 9:56 AM
To: [EMAIL PROTECTED]
Subject: [PHP] basic script
I just want th
using set entities.
5. Draw footer.
This is just a overview of approach. You may need to process more things
along with middle bar, but it is good idea to do logical processing
before presentation.
Zareef Ahmed
-Original Message-
From: Victor C. [mailto:[EMAIL PROTECTED]
Sent
Hi,
You may try a ip locator and then guess for users country.
IN this way you can design your programme to treat users from Russia to
Russian language etc.
Visit
http://zareef.users.phpclasses.org/browse/package/1477.html
Zareef Ahmed
-Original Message-
From: Daniel Schierbeck
e']);
Print_r($val_ar);
This process is very simple. Please see manual
http://www.phpcertification.com/manual.php/function.serialize.html
http://www.phpcertification.com/manual.php/function.unserialize.html
Revert back with any other problem.
Zareef ahmed
-Original Message-
Hi,
Please visit
http://www.phpcertification.com/manual.php/functions.arguments.html#func
tions.arguments.by-reference
Hope it will be helpful.
zareef Ahmed
-Original Message-
From: Jonathan Chum [mailto:[EMAIL PROTECTED]
Sent: Monday, November 08, 2004 9:52 AM
To: [EMAIL
Hi Cristi,
I think you must know and understand how the session works in PHP.
Please Read.
http://in2.php.net/session
Some things to note on that page
session.use_cookies
session.use_trans_sid
Zareef Ahmed
-Original Message-
From: Cristi Barladeanu [mailto:[EMAIL PROTECTED
Hi,
when declaring function
function example($var1, $var2, $var3, $var4="anything")
{
}
Now calling
Example("one","two","three");
will not throw an error, but pass 'anything' as the value of $var4 by
default if you override the value pa
ation PEAR::Auth is used.
>I just wanted to ask if there's more to take care of.
>--
>Best Regards,
>Mark
--------
--
Zareef Ahmed :: A PHP develoepr in Delhi ( India )
Homepage :: http://www.zasaifi.com
--
PHP
Hi,
You may use $_SERVER['REQUEST_URI'];
Zareef ahmed
-Original Message-
From: Kevin Javia [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 03, 2004 1:43 PM
To: [EMAIL PROTECTED]
Subject: [PHP] URL thing
How can I get the URL in the address bar in any variable?
, But you may try the combination of
javascript and php to do so
Following function may be usefull
session_regenerate_id();
See the manual for it.
Zareef ahmed
> browser. Can I make him to login again in the new window but to keep
> him logged in the old one?
>
> Now i'm
Hi,
After setting error_reporting to E_ALL.
You may need to set show_errors in php.ini
Use
error_reporting(E_ALL);
ini_set("show_errors","1");
Zareef ahmed
-Original Message-
From: Jason Wong [mailto:[EMAIL PROTECTED]
Sent: Tuesday, November 02, 2004 4:11 PM
wing line should be sufficient
$OrderObject =$this->orders[$OrderID];
Or
$OrderObject =$value;
Zareef ahmed
>echo $OrderObject->OrderID."<--all the same";
>}
>
>I know that $this->orders is an array of "order" objects.
>
>the result i get fro
1 - 100 of 146 matches
Mail list logo