php-general Digest 2 Sep 2001 14:00:00 -0000 Issue 852

Topics (messages 65620 through 65632):

FREE Internet Business --- Start Immediately...
        65620 by: cici429.prontomail.com

ereg question
        65621 by: js

Re: chmod and ps ef |grep httpd
        65622 by: Richard Lynch

Re: loop?  or conditional problem
        65623 by: Richard Lynch

problem with ereg() and ereg_replace()
        65624 by: Stonix
        65628 by: CC Zona

Really weird problem: cross-server databasing *g*
        65625 by: Markus Mayer
        65627 by: Markus Mayer

Make Money For Sending E-mail
        65626 by: fred.bill.usa.com

virtual nulls include problem
        65629 by: Alfredo Yong

Call to undefined function: dbase_open() in
        65630 by: yang

Function call introspection: possible or not?
        65631 by: Geoff Caplan

php's future
        65632 by: nick

Administrivia:

To subscribe to the digest, e-mail:
        [EMAIL PROTECTED]

To unsubscribe from the digest, e-mail:
        [EMAIL PROTECTED]

To post to the list, e-mail:
        [EMAIL PROTECTED]


----------------------------------------------------------------------


--->How To Make It *BIG* on the Net...QUICKLY...with NO Money! 
       
This is NEW and INCREDIBLY EXCITING!! Join Free, WORLD-WIDE!

(Zero investment!) No hassles, no selling, no pressure.
 
Like NOTHING you have ever seen on the net today! No limits...
 
You can join for FREE and MAKE MONEY!!  We will Help YOU!
 
Once your earnings START, they NEVER STOP! 
 
Check out this EXCITING OPPORTUNITY.  Start immediately.

===> I'll email you free details. <=== 

Just send a blank e-mail to:
 
[EMAIL PROTECTED]    -->and type "JoinFree" in subject line.
  
(DO NOT HIT REPLY or It will be automatically purged or bounced.)

Hope you don't miss this one.

=============================================

(DO NOT HIT REPLY or It will be automatically purged or bounced.)


--



----------------------------------------------
*********(REMOVAL INSTRUCTIONS BELOW)**********
----------------------------------------------
---------------------------------------------------------------------------------------------
If you wish to be removed from future mailings, please send
an email to:  [EMAIL PROTECTED] 
with the subject "Remove" and you will automatically be blocked 
from any future mailings.
 
--------------------------------------------------------------------------------------------























In the Leon Atkinson Core PHP book, in his ereg example he states that ereg 
will only return the first match on a line.  Can anyone confirm or deny this?

Thanks,
Josh





> i've been told that the files must be owned by the

Which files?  For what?...

> same person that owns the httpd. using ps ef |grep
> httpd, it says "grep httpd USERNAME=
> ENV=/home/police/.bashrc HISTSIZE="
> my unix login is police. so, what does this mean as
> far as trying to get my chmod command to work?

Probably nothing at all.  You need to look in httpd.conf to see what User is
set to.  If you can't look in httpd.conf (at an ISP) <?php phpinfo();?> may
tell you.

If all else fails, you can *probably* do:
<?php exec("/usr/bin/whoami", $results, $errorcode);?>
echo implode("<BR>\n", $results);
if ($errorcode){
    echo "OSError $errorcode.  Usually path/permissions.  man
errno.<BR>\nMaybe don't even have permission to exec whoami... :-(<BR>\n";
}

--
WARNING [EMAIL PROTECTED] address is an endangered species -- Use
[EMAIL PROTECTED]
Wanna help me out?  Like Music?  Buy a CD: http://l-i-e.com/artists.htm
Volunteer a little time: http://chatmusic.com/volunteer.htm






Your SELECT statement is returning way more rows than you expect, I think,
since it will return the number of users times the number of members minus
however many there are that have the same id...

I don't think you wanted that...

I suspect you want a sub-select where you don't get any users who are
members, or maybe no members who are users...

MySQL *might* let you do:

select ... from members where not id in (select id from users)

OTOH, I don't really understand what you are trying to do in the first
place, but I suspect there's a much easier way to do it...

--
WARNING [EMAIL PROTECTED] address is an endangered species -- Use
[EMAIL PROTECTED]
Wanna help me out?  Like Music?  Buy a CD: http://l-i-e.com/artists.htm
Volunteer a little time: http://chatmusic.com/volunteer.htm
----- Original Message -----
From: Syaggie <[EMAIL PROTECTED]>
Newsgroups: php.general
To: <[EMAIL PROTECTED]>
Sent: Saturday, September 01, 2001 8:26 AM
Subject: loop? or conditional problem


> Okay the the script is attached below.  i am baffled at the problem.  as
you
> can see the script does a rather simplistic generation of passwords.  it
> then writes them into two files.
>
> the problem is the first time i run (i am running it stand alone)  it
works
> fine and the result is two files with 32 entries (and the mysql entries
are
> also correct).  the second time i run it.  i (there should be 44 new
entries
> make one file with 76 entries and another with 44)
>
> however what i get is a file with 1233 entries and another with 1201.
>
> now i admit the code is not beautiful but my concern is more of what is
> causing this.  i have checked the variables both $i and $rows appear fine.
>
> when i look at the text files what i see is it assigns the 44 entries and
> then repeats them.  all i can figure is it is the conditional or whiel
loop?
> why does it work perfect the first time??
>
>
> <?php
> mysql_connect("localhost:/var/run/mysql/mysql.sock");
> mysql_select_db("VQRGDATA");
> $letter = array("Gob", "Lol", "woZ", "Kop", "MoS", "tRu", "SAw", "NoR",
> "TEf","TaF", "JoP", "lOg", "tAn", "FiSH", "cAT", "VAn", "bAb", "Mob",
> "KorN", "BeAt", "roSe", "KlaP", "iZ", "GEr", "HaT", "ZaaM", "toAd",
"emU");
> $results = mysql_query("SELECT members.id, members.lname FROM members,
users
> WHERE users.id <> members.id");
> $rows= mysql_num_rows($results);
> if($rows != 0)
> {
> while($info = mysql_fetch_array($results))
> {
> if($info[0] != 0)
> {
> $ids[] = $info[0];
> $lnames[] = $info[1];
> }
> }
> mysql_free_result($results);
> $i=0;
> while($i < $rows-1)
> {
> srand((double) microtime() * 1000000);
> $pass_letter_key = array_rand($letter);
> srand((double) microtime() * 1000000);
> $pass_num1 = mt_rand(0, 26);
> srand((double) microtime() * 1000000);
> $pass_num2 = mt_rand(100, 926);
> $strip = trim($lnames[$i]);
> $lower = strtolower($strip);
> $infochop = substr($lower, -5, 4);
> $username = $infochop.$pass_num2;
> $password = $pass_num1. $letter[$pass_letter_key].$pass_num2;
> $respass = mysql_query("SELECT password FROM users WHERE
> password='$password'");
> $pass_row = mysql_num_rows($respass);
> if(!$pass_row)
> {
> mysql_query("INSERT INTO users(id, username,password) VALUES('$ids[$i]',
> '$username', '$password') ");
> $complete = fopen("complete.txt", "a+");
> $input[] = $ids[$i]."\t".$username."\t".$password."\n";
> fputs($complete, $input[$i]);
> fclose($complete);
> $i++;
> }
> mysql_free_result($respass);
>
> }
> }
> $new = implode("", $input);
> $newtxt = fopen("new.txt", "w");
> fputs($newtxt, $new);
> fclose($newtxt);
> ?>
>





Hi,

I have a strange problem with ereg() and ereg_replace(). I have a 
Linux RH 7.1 machine running apache and php4. On this server, if 
use ereg() or ereg_replace() with "{" or "}", for example,

ereg_replace( "{key}", "word", $a_string);

The web server will return following warnning msg:

Warning: Invalid content of \{\} in /var/www/html/scrip.php on line #

* # stand for the line number of ereg or ereg_replace.

But I have used ereg/ereg_replace on many other php4 web servers
without any problem. I guess this must has something to do with
php configuration. I reviewed/compared phpinfo of my machine with
other machines, couldn't find anything signaficant difference.

Please, in these community, anyone can help me out. Thanks in
advance!

Alex








In article <01b201c13354$0ca601c0$0105050a@pony>,
 [EMAIL PROTECTED] (Stonix) wrote:

> ereg_replace( "{key}", "word", $a_string);
> 
> The web server will return following warnning msg:
> 
> Warning: Invalid content of \{\} in /var/www/html/scrip.php on line #

In regex, the curly braces are special characters used to define the number 
of repetitions to be matched, either as an exact number or as a range.

"a{2}" #"aa"
"abc(2,3}" #"abcabc" or "abcabcabc"
"abc{,2}" #"","abc", or "abcabc"

Are you trying to match the literal string "{key}"?  'Cuz if so, you might 
as well just use str_replace since you're not really in need of ereg_*'s 
special pattern matching.  If you're trying to match a special character 
with a regex, don't forget to either escape it or put it in a character 
class:

ereg_replace( "\{key\}", "word", $a_string); 
ereg_replace( "[{]key[}]", "word", $a_string);

-- 
CC




Hi folks!

Let's say you have two servers, on the first one ("A") you have your website
containig all those nice php scripts and co but only a crazy small database
(2 megs), on the second one ("B") you have a really big database available
but the problem, that the provider won't allow you to access the database
from any other place than from your account on B. That wouldn't be the
problem, but B opens pop ups each time, you open a website there - and that
couldn't be the solution.

Has anyone an idea how to access the database on B without opening a webpage
there (and with this, without opening a popup) from server A?

ANY help much appreciated!

Markus Mayer






Forgot to mention ... the only way to access the database on B is to connect
to "localhost" there.






Dear [EMAIL PROTECTED],


> BE A MILLIONAIRE LIKE OTHERS WITHIN A YEAR!!! > >
> Before you say ''Bull'', please read the following.>
> This is the letter > you > have been hearing about
> on the news lately. Due to> the popularity of > this
> letter on the Internet, a national weekly news>
> program recently > devoted > an entire show to the
> investigation of this program> described below, to >
> see > if it really can make people money. The show
> also> investigated whether or > not the program was
> legal. Their findings proved once and for all
> that there> are ''absolutely NO > Laws > prohibiting
> the participation in the program and if> people can
> -follow > the > simple instructions, they are bound
> to make some> mega bucks with only > $25 out of
> pocket cost''. DUE TO THE RECENT INCREASE> OF >
> POPULARITY & RESPECT THIS PROGRAM HAS ATTAINED, IT
> IS CURRENTLY WORKING BETTER THAN EVER. > > This is
> what one had to say: ''Thanks to this> profitable
> opportunity. I > was approached many times before
> but each time I> passed on it. I am > so glad I
> finally joined just to see what one could> expect in
> return for > the > minimal effort and money
> required. To my> astonishment, I received total
> $610,470.00 in 21> weeks, with money still coming
> in." > Pam Hedland, Fort Lee, New Jersey. 
> ===================================================
> > > Here is another testimonial: "This program has
> been> around for a long > time but I never believed
> in it. But one day when I> received this again > in
> the mail I decided to gamble my $25 on it. I>
> followed the simple > instructions and walaa ..... 3
> weeks later the money> started to come in. > First
> month I only made $240.00 but the next 2> months
> after that I made > a total of $290,000.00. So far,
> in the past 8 months> by re-entering the > program,
> I have made over $710,000.00 and I am> playing it
> again. The > key to success in this program is to
> follow the> simple steps and NOT > change >
> anything.'' More testimonials later but first, 
> ===== PRINT THIS NOW FOR YOUR FUTURE REFERENCE
>
>
$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$>
> > If you would like to make at least $500,000 every
> 4> to 5 months easily > and > comfortably, please
> read the following...THEN READ> IT AGAIN and
> AGAIN!!! >
>
$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$>
> > > FOLLOW THE SIMPLE INSTRUCTION BELOW AND YOUR>
> FINANCIAL > DREAMS WILL COME TRUE, GUARANTEED!
> INSTRUCTIONS: > > =====Order all 5 reports shown on
> the list below> ===== > > For each report, send $5
> CASH, THE NAME & NUMBER OF> THE REPORT > YOU ARE
> ORDERING and YOUR E-MAIL ADDRESS to the> person
> whose > name appears ON THAT LIST next to the
> report. MAKE> SURE YOUR RETURN > ADDRESS IS ON YOUR
> ENVELOPE TOP LEFT CORNER in case> of any mail >
> problems. > > === When you place your order, make
> sure you order> each of the 5 reports. > You will
> need all 5 reports so that you can save> them on      
> your computer > and resell them. YOUR TOTAL COST $5
> X 5=$25.00. > > Within a few days you will receive,
> vie e-mail, each> of the 5 reports > from > these 5
> different individuals. Save them on your> computer
> so they will be > accessible for you to send to the
> 1,000's of people> who will order them > from you.
> Also make a floppy of these reports and> keep it on
> your desk in case something happen to> your
> computer. > > IMPORTANT - DO NOT alter the names of
> the people who> are listed next > to each report, or
> their sequence on the list, in> any way other than
> what is instructed below in step> '' 1 through 6 ''
> or you will loose out on majority > of your profits.
> Once you understand the way this> works, you will
> also > see how it does not work if you change it.
> Remember,> this method has been > tested, and if you
> alter, it will NOT work !!!> People have tried to
> put > their > friends/relatives names on all five
> thinking they> could get all the > money. But it
> does not work this way. Believe us, we> all have
> tried to be greedy and then nothing> happened. So Do
> Not try to change anything other> than what is
> instructed. Because if you do, it will> not work for
> you. > > Remember, honesty reaps the reward!!! > >
> 1.... After you have ordered all 5 reports, take>
> this advertisement and > REMOVE the name & address
> of the person in REPORT #> 5. This person > has made
> it through the cycle and is no doubt> counting their
> fortune. > 2.... Move the name & address in REPORT #
> 4 down TO> REPORT # 5. > 3.... Move the name &
> address in REPORT # 3 down TO> REPORT # 4. > 4....
> Move the name & address in REPORT # 2 down TO>
> REPORT # 3. > 5.... Move the name & address in
> REPORT # 1 down TO> REPORT # 2 > 6.... Insert YOUR
> name & address in the REPORT # 1> Position. > >
> PLEASE MAKE SURE you copy every name & address>
> ACCURATELY! > >
>
==========================================================>
> > > **** Take this entire letter, with the modified
> list> of names, and save > it on your > computer. DO
> NOT MAKE ANY OTHER CHANGES. > Save this on a disk as
> well just in case if you> loose any data. To assist
> you with marketing your> business on the internet,
> the 5 reports you purchase> will provide you with
> invaluable marketing> information which includes how
> to send bulk e-mails> legally, where to find
> thousands of free classified> ads and much more. > >
> There are 2 Primary methods to get this venture>
> going: > METHOD # 1: BY SENDING BULK E-MAIL LEGALLY
> > >
>
==========================================================>
> > > Let's say that you decide to start small, just
> to> see how it goes, and we will assume You and
> those> involved send out only 5,000 e-mails each.
> Let's> also assume that the mailing receive only a
> 0.2%> response (the response could be much better
> but lets> just say it is only 0.2%. Also many people
> will send> out hundreds of thousands e-mails instead
> of only> 5,000 each). Continuing with this example,
> you send> out only 5,000 e-mails. With a 0.2%
> response, that> is only 10 orders for report # 1.
> Those 10 people> responded by sending out 5,000
> e-mail each for a> total of 50,000. Out of those
> 50,000 e-mails only> 0.2% responded with orders.
> That's=100 people> responded and ordered Report # 2.
> > > Those 100 people mail out 5,000 e-mails each for
> a> total of 500,000 > e-mails. The 0.2% response to
> that is 1000 orders> for Report # 3. > > Those 1000
> people send out 5,000 e-mails each for a> total of 5
> million > e-mails sent out. The 0.2% response to
> that is> 10,000 orders for Report # 4. > > Those
> 10,000 people send out 5,000 e-mails each for> a
> total of 50,000,000 (50 million) e-mails. The 0.2%>
> response to that is 100,000 orders for Report # 5 >
> > THAT'S 100,000 ORDERS TIMES $5 EACH=$500,000.00>
> (half million). > > Your total income in this
> example is: 1..... $50 +> 2..... $500 + 3..... >
> $5,000 + 4 > .. $50,000 + 5..... $500,000 ........
> Grand> Total=$555,550.00 > > NUMBERS DO NOT LIE. GET
> A PENCIL & PAPER AND> FIGUREOUT > THE WORST POSSIBLE
> RESPONSES AND NO MATTER HOW YOU > CALCULATE IT, YOU
> WILL STILL MAKE A LOT OF MONEY ! > >
>
=========================================================>
> REMEMBER FRIEND, THIS IS ASSUMING ONLY 10 PEOPLE
> ORDERING OUT OF 5,000 YOU MAILED TO. > Dare to
> think for a moment what would happen if> everyone or
> half or even > one 4th of those people mailed
> 100,000e-mails each> or more? There are > over 150
> million people on the Internet worldwide> and
> counting. Believe > me, > many people will do just
> that, and more! > METHOD # 2 : BY PLACING FREE ADS
> ON THE INTERNET > >
>
=======================================================>
> Advertising on the net is very, very inexpensive
> and> there are hundreds > of FREE places to
> advertise. Placing a lot of free> ads on the
> Internet > will easily get a larger response. We
> strongly> suggest you start with Method # 1 and add
> METHOD # 2> as you go along. For every $5 you
> receive, all you> must do is e-mail them the Report
> they ordered.> That's it. Always provide same day
> service on all> orders. > This will guarantee that
> the e-mail they send out,> with your name and >
> address on it, will be prompt because they can not>
> advertise until they > receive the report. > >
> =========== AVAILABLE REPORTS ==================== >
> > ORDER EACH REPORT BY ITS NUMBER & NAME ONLY.
> Notes: > Always send $5 cash (U.S. CURRENCY) for
> each Report.> Checks NOT > accepted. Make sure the
> cash is concealed by> wrapping it in at least 2 >
> sheets > of paper. On one of those sheets of paper,
> Write the> NUMBER & the NAME > of the Report you are
> ordering, YOUR E-MAIL ADDRESS> and your name > and
> postal address. > > PLACE YOUR ORDER FOR THESE
> REPORTS NOW : > >
>
====================================================>
> >  REPORT # 1: "The Insider's Guide to Advertising
     for Free on the Net" > Order Report #1 from: 
> W.L. Hassell
> P.O. Box 6112 
> Spokane WA, 99217-0902
> >
>
___________________________________________________________>
> > REPORT # 2: "The Insider's Guide to Sending Bulk
>   e-mail on the Net" > Order Report # 2 from: 
>  W.K. Bowen
>  18330 N 79th ave #2138 
>  Glendale AZ,
> 85308-8363> >
>
____________________________________________________________>
> > REPORT # 3: "Secret to Multilevel Marketing on
>   the Net" > Order Report # 3 from :
> M.G. 
> 7143 Hillside Dr. 
> W. Bloomfield, MI 48322-2847, USA 
>
__________________________________________________________>
> > REPORT # 4: "How to Become a Millionaire
>   Utilizing> MLM & the Net" > Order Report # 4 from:

> K.C. 
> 7143 Hillside Dr.
> W. Bloomfield, MI 48322-2847
>
____________________________________________________________>
> > REPORT #5: "How to Send Out 0ne Million e-mails
>   for Free" > Order Report # 5 from:
  B. M.
  4510 Meadow Way
  White Lake, MI 48383-1816
>
___________________________________________________________>
> > $$$$$$$$$ YOUR SUCCESS GUIDELINES $$$$$$$$$$$ > >
> Follow these guidelines to guarantee your success: >
> > === If you do not receive at least 10 orders for>
> Report #1 within 2 > weeks, continue sending e-mails
> until you do. > === After you have received 10
> orders, 2 to 3 weeks> after that you > should
> receive 100 orders or more for REPORT # 2. If> you
> did not, > continue advertising or sending e-mails
> until you> do. > === Once you have received 100 or
> more orders for> Report # 2, YOU > CAN RELAX,
> because the system is already working for> you, and
> the > cash will continue to roll in ! THIS IS
> IMPORTANT TO> REMEMBER: > Every time your name is
> moved down on the list, you> are placed in front >
> of a Different report. > You can KEEP TRACK of your
> PROGRESS by watching> which report > people are
> ordering from you. IF YOU WANT TO> GENERATE MORE >
> INCOME SEND ANOTHER BATCH OF E-MAILS AND START > THE
> WHOLE PROCESS AGAIN. > There is NO LIMIT to the
> income you can generate> from this business !!! > >
>
======================================================>
> > > FOLLOWING IS A NOTE FROM THE ORIGINATOR OF THIS
> > PROGRAM: You have just received information that
> can> give you > financial freedom for the rest of
> your life, with NO> RISK and JUST > A LITTLE BIT OF
> EFFORT. You can make more money in> the next > few
> weeks and months than you have ever imagined.>
> Follow the program > EXACTLY AS INSTRUCTED. Do Not
> change it in any way.> It works > exceedingly well
> as it is now. > Remember to e-mail a copy of this
> exciting report> after you have put > your name and
> address in Report #1 and moved others> to #2
> ...........# 5 > as instructed above. One of the
> people you send this> to may send out > 100,000 or
> more e-mails and your name will be on> every one of
> them. > Remember though, the more you send out the
> more> potential customers > you will reach. > So my
> friend, I have given you the ideas,> information,
> materials and > opportunity to become financially
> independent. IT IS> UP TO YOU NOW ! > > ============
> MORE TESTIMONIALS ================ > > "My name is
> Mitchell. My wife, Jody and I live in> Chicago. I am
> an > accountant with a major U.S. Corporation and I
> make> pretty good money. > When I received this
> program I grumbled to> Jodyaboutreceiving ''junk >
> mail''. I made fun of the whole thing,spoutingmy>
> knowledge of the > population > and percentages
> involved. I ''knew'' it wouldn't> work. Jody totally
> > ignored > my supposed intelligence and few days
> later she> jumped in with both feet. > I > made
> merciless fun of her, and was ready to lay the> old
> ''I told you so'' > on > her when the thing didn't
> work. Well, the laugh was> on me! Within 3 weeks >
> she had received 50 responses. Within the next 45>
> days she had received > total $ 147,200.00
> ........... all cash! I was> shocked. I have joined
> > Jody > in her ''hobby''. > Mitchell Wolf M.D.,
> Chicago, Illinois > >
>
======================================================>
> > > ''Not being the gambling type, it took me
> several> weeks to make up my > mind to participate
> in this plan. But conservative> that I am, I decided
> > that > the initial investment was so little that
> there was> just no way that I > wouldn't get enough
> orders to at least get my money> back''. '' I was >
> surprised when I found my medium size post office>
> box crammed with > orders. I made $319,210.00in the
> first 12 weeks. The> nice thing about > this deal is
> that it does not matter where people> live. There
> simply > isn't a > better investment with a faster
> return and so big." > Dan Sondstrom, Alberta, Canada
> > >
>
=======================================================>
> > > ''I had received this program before. I deleted
> it,> but later I wondered > if I should have given
> it a try. Of course, I had no> idea who to contact >
> to > get another copy, so I had to wait until I was>
> e-mailed again by someone > else.........11 months
> passed then it luckily came> again...... I did not >
> delete this one! I made more than $490,000 on my>
> first try and all the > money came within 22 weeks."
> > Susan De Suza, New York, N.Y. > >
>
=======================================================>
> > > ''It really is a great opportunity to make>
> relatively easy money with > little cost to you. I
> followed the simple> instructions carefully and >
> within 10 days the money started to come in. My>
> first month I made > $20,560.00 and by the end of
> third month my total> cash count was > $362,840.00.
> Life is beautiful, Thanx to internet.".> > Fred
> Dellaca, Westport, New Zealand > >
>
=======================================================>
> > ORDER YOUR REPORTS TODAY AND GET STARTED ON >
> 'YOUR' ROAD TO FINANCIAL FREEDOM ! >
>
=======================================================>
> > > If you have any questions of the legality of
> this> program, contact the > Office of Associate
> Director for Marketing> Practices, Federal Trade >
> Commission, Bureau of Consumer Protection,>
> Washington, D.C. > > > (Note: To avoid delays make
> sure appropriate postage> to Canada is applied > if
> mailing from the US) > > 
> 






Hi. I use allways the include built in function to conditionally select 
the php script that build the web page.

I need to add a header at he beginning of an already working script, but 
the directive include don't work:

        <!-- #include virtual="../../../../headlvl4.shtml" -->

So I'm using

        <% virtual ("../../../../headlvl4.shtml"); %>

This works fine for the header, but makes an error when the include 
built in function calls the php script that shows the main panel of the 
page:

Warning: Failed opening './barra.php' for inclusion 
(include_path='.:/usr/local/lib/php') in 
/www/public/blabla/bla/re-blah/another_blah/blahh/blahblahblah/main.php 
on line 44

I've tried to put the dot ahead the name but it is no working either.

Any help will be very much appreciated






i want try to open the test.dbf files ..
but have the problem
Call to undefined function: dbase_open() in






Hi folks

Just in case I am missing something -

Is there any way for a function to determine the name of the calling
function?

I want my database abstraction layer to be able to log query errors against
the name of the calling function, but I would rather not have to pass the
name in the query request every time. Any suggestions?

Thanks

Geoff Caplan
Advantae Ltd





Hi all in the list :
I read an news that said jsp/asp.net is better than php..
 
They made a test that asp/php/jsp/asp.net using "for loops",
 
Jsp from 1 to 20000 takes only 4 secs
Asp from 1 to 2000 (not 20000) takes 72 secs
Php from 1 to 2000 (not 20000) takes 68 secs
Asp.Net from 1 to 20000 takes only 3.5~3.8 secs...
 
So is it time to learn jsp/asp+ instead of learning php ..???
I am so confused ~
I have been learning php for a while and now it said jsp/asp+ is better
than it.@@


Reply via email to