I'm running 2 versions of PHP. On version 5.1.2 this command is fine :- " function loadObject(&$object=NULL) {" But, on version 4.3.10, it fails with this...
I didn't know it had gotten turned off... thanks for the help. _____ From: php-objects@yahoogroups.com [mailto:php-objects@yahoogroups.com] On Behalf Of Joseph...
Hi, In symfony , if i have two modules. module A has functino to get the details and corresponding template has a list of comments to show from filesystem. But...
Hi, The tool is called imagemagick. You have to use both ffmpeg and imagemagick as well. First get the frames from the video file using ffmpeg and then use the...
Presel Karthik S
preselks@...
Mar 2, 2007 7:39 am
5158
Hi friends, I'm beginning to learn php. While doing so I was now in the process of connecting my pages to MS SQL & retrieve data & display it to the user. ...
Ankit, what you _may_ be looking for is :- echo $ratesheetid; echo $ratesheetname; If you're problem is more complicated than that, let me know the exact error...
The first thing to do is check what $arr contains by doing a print_r($arr); after the mssql_fetch_ array() statement. This will contain newlines instead of...
Jeff Bennett
JBennett@...
Mar 2, 2007 5:52 pm
5162
Since it appears you are expecting more than one row to be returned, you might look into using a loop. Perhaps something along the lines of: while...
Hi all, you are always so helpful, what's wrong with this; $sql2="SELECT base.ID as ID, base.id_surname, surname.id_surname, surname, sortname, name, id_name,...
try this: SELECT b.ID ,b.id_surname ,s.id_surname ,s.surname ,b.sortname ,b.name ,b.id_name ,b.sex FROM base b LEFT OUTER JOIN surname s ON s.id_surname =...
In message <es9jqh+5k9a@eGroups.com>, caprecerevisi2005 <wolfear@...> writes ... That was my suggestion, and if all the tables are going to be called...
Thanks, Brian, but whatever I do it doesn't sort. I really don't care about the 'JOINT'. I just want to get data from two tables and have them sorted to a...
Hi , Wishes. I have developed a commenting system and it work as follows. first comment would be X. All reply to this would be X.X and reply to X.X would eb as...
Hi, Wishes. I am not comfortable with shell scripting though know a bit here and there. I believe the listing of a directory using php logic alone would not...
... dl() is not used to register *any* DLL, but only PHP modules. If you want to use some DLL you can either change it, or write a small wrapper that follows...
Hello everyone, please help me how to setting SSL in IIS in XP, and how to use it,.. anybody have the reference of using SSL?? please, Im newbie,... thanks a...
Billy
billstts@...
Mar 5, 2007 6:07 am
5173
Hi gurus, I am a beginner PHP developer and using PEAR framework for database connectivity when I try to connect db using following statement $dsn =...
Hi Wolf, In an earlier email you had the ORDER BY field 'surname' unqualified, so I thought that your problem may be because MySQL is confusing the column name...
Hi the internet programmers! Cheerful Greetings. Normally, any kind of programming too hard to start. And we may make our programming much harder, writing a...
You might want to consider using heredoc for outputting text. That way, you can maintain lines of code much easier. Consider the following lines: print "<table...
That is because by default, PHP5 have variables passed by reference. This is a new feature added in PHP5, or something that makes the language totally...
Thanks Jeff, Your point was well used & am able to get pass my SELECT query. Now another question for all you helpful guys. How do I display records across...
Hi Pete, What I meant by query processing is that I'm getting the number of results that I could know from echo $num; However, I wasn't able to publish the...
Dear all, Greeting to all I am getting lot of useful messages for updating my knowledge in php after subscribing in this group. I have to create a dynamic tree...
Ankit, the magic command here is LIMIT within the SELECT statement :- SELECT .... LIMIT [offset,] row_count; Basically, you decide how many records you're...
Hi Ankit, What you are looking for is a 'pagination' algorithm. This is very common. I searched in Google for 'php mysql pagination' and got many hits. The...