[PHP] Image size, (not weight) help

2003-03-29 Thread Webmaster MBT
Hi: I would like to know if there is a way to know the size foan image when uploading it from a form page on PHP. I know the weight can be measured with $file_size but what Im looking for is to be able to validate if an image is more than 220pixels width or of height. Thanks in advance EJB --

[PHP] How to delay a header( Location: )

2003-03-21 Thread Webmaster MBT
Hi I need to delay the jump of a page that uses header(location: ) to jump. Ive tried adding a , after the file name (that's how we do it on html) but it doesn't work Any Ideas? EJB

[PHP] How to detect if a cookie is set?

2003-03-21 Thread Webmaster MBT
Hi I'm trying to make a script that first figures out if a cookie is set, if not,do this, if so, do that. Can I use: Isset($HTTP_COOKIE_VARS['nick'] or what should I use? EJB -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] problem with importing fields.

2003-02-14 Thread Webmaster MBT
Hi List. I have been working on a problem that is driving me crazy. I have to create a process in which I upload some info to a table. Since I have to add some different information to that table, I decided to do it like this. 1.I create a temporary table copying the structure of my final table.

[PHP] output buffering problem

2002-11-15 Thread webmaster
I'm trying to enable output buffering to speed up the load time of some of our php web pages. I've consulted the manual and enabled the following: output_buffering = On output_handler = ob_gzhandler At the beginning of my .php script, I include the following: ob_start(ob_gzhandler); This retur

[PHP] Crystal Reports & PHP MySQL

2002-10-15 Thread Webmaster MBTRADINGCO
Hi does anyone knows if Crystal Reports works fine with PHP MySQL Enviroment, or can anyones suggest me a good reporter for PHP MySQL Site? The Vampmaster. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] problem with SUM and Postgres

2002-10-09 Thread webmaster
I can't figure out why the following code is not returning a column total: $sql1 = "SELECT SUM(hostingcost) FROM $tablename WHERE webserver = '$webserver'"; $hosting = pg_exec($connect, $sql1); echo $hosting; This returns: Resource ID #3 The only thing I can think of is that the hostingcost col

[PHP] Does anyone knows File Maker

2002-10-03 Thread Webmaster MBTRADINGCO
I ran yesterday into a company that wants me to implement a solution with PHP and File Maker. I don't even know if it is possible, so I was wondering: A) Does anyone has any experience with filemaker? b) Can PHP save data from internet via ODBC to a database (other than the ones it supports) in a

RE: [PHP] Getting users IP address into a variable.

2002-10-02 Thread Webmaster MBTRADINGCO
Actually I'm just using it so a customer can acces a PWS that is broadcasting on its own security cameras. I have a DSL that disconnects every 8 hours, and gives dinamyc IP, so each time it connects it goes to my site, and writes down the addres, so my customer can access the report, and see what

[PHP] Getting users IP address into a variable.

2002-10-02 Thread Webmaster MBTRADINGCO
I'm sure there has to be a way to verify which IP address is accessing from. I need to establish a page where when I enter it records the IP address I'm logging in from, to a database. Problem is I can't seem a command in php that can assign that to a variable, as in: $ip=HTTP_GET_ ANY IDEA

Re: [PHP] HTML 2 TEXT

2002-09-20 Thread SiTA WebMaster - VST
Try to remove all strings starting with "<" and ending with ">". Be sure not to remove ""'s. Also you need to format line endings via "\n" or "". it might seem a little bit hard, but any other solution won't work rather than this. Tim Haynes wrote: >Does anybody know of a class or a solution

Re: [PHP] Writing Files

2002-08-30 Thread Webmaster
i write these files in a for-next loop, so at the start of each loop, i've to put an unmask command? - Original Message - From: "Jason Wong" <[EMAIL PROTECTED]> Newsgroups: php.general To: <[EMAIL PROTECTED]> Sent: Friday, August 30, 2002 4:11 PM Subject: Re: [PHP] Writing Files > On Fr

Re: [PHP] Next and Previous links

2002-08-09 Thread webmaster
I found an answer for anyone who may be interested on phpbuilder.com http://phpbuilder.com/annotate/message.php3?id=1010986 -Elkan webmaster wrote: > Hello, > > I've been trying write a .php page that displays 10 results per page > with links to the next 10 avail. I&

[PHP] Next and Previous links

2002-08-09 Thread webmaster
Hello, I've been trying write a .php page that displays 10 results per page with links to the next 10 avail. I've found a couple examples on how to do this with MySQL, and I tried to convert it to work with Postgres with no luck. Has anyone ever done this using PHP4.0.6 and Postgres 7.1? Also,

[PHP] string questions

2002-08-02 Thread webmaster
I know there has to be an easy way to do this, but I just can't find the answer. I need to strip out the first part of a text string. I've figured out out to strip out the last part of a string using the following: $address = (4455 N. 45th St.); $test = strstr($address, " "); echo $test; The

Re: [PHP] Error(Newbie)

2002-06-22 Thread webmaster
I got that auto add slashes thing on. is it enough? If not how should I go about adding them? like this? $_SERVER['REMOTE_HOST'] = addslashes($_SERVER['REMOTE_HOST']); What sort of effects could an attack have? I am intergrating stats into a site. What other vars could I gather info from? Th

[PHP] Error(Newbie)

2002-06-22 Thread webmaster
Both the below are in the same dir.   The meta.array_create.php file works fine elsewhere   when I try and view stat.php I get this error:   Parse error: parse error, expecting `T_STRING' or `T_VARIABLE' or `T_NUM_STRING' in C:\TecEco(Converting To PHP)\includes\stat.php on line 7   What doe

[PHP] Nested Menu Help

2002-06-22 Thread webmaster
When I am in page A (or one of it's children) I wish to show it's one level of children like so:   Page A   Child 1   Child 2   etc... Page B   When I am in page B (or one of it's children) I wish to show it's one level of children like so:   Page A Page B   Child 1   Child 2   etc...  

[PHP] Sessions and variables dum question

2002-06-18 Thread webmaster mbtradingco
Hi, maybe I'm doing something wrong but I can't figure out what. I have a little script that is supposed to handle two variables from a session, so when a user logs in: Session start() $user = "user" $pass = "pass"... redirects to another page. Now on the index page it reads Session start() G

[PHP] get a html page and save it to a file

2002-06-16 Thread Aborla.net - webmaster
Hello again, I would like to know how can I download a html page from other server and write it's contents in a file. Thanking in advance, Nuno Lopes -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] HTTP Compression

2002-06-14 Thread Webmaster do Aborla.net
Hi, I would like to know how can I compress the output of PHP through Zlib. Thanking in advance, Nuno Lopes -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] $HTTP_USER_AGENT

2002-06-13 Thread Webmaster do Aborla.net
Hello, Why $HTTP_USER_AGENT don't work?? I can't get it's value, but in phpinfo the value appears. why this??? Thanking in advance, Nuno Lopes -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] POST/GET vars in apache

2002-06-13 Thread Webmaster do Aborla.net
Hello everybody, I used to use IIS and now I moved to apache. I use PHP, too. But now, in order to get a POST/GET var I need to use $HTTP_POST_VARS[var] and with IIS I simply call $var. Why this happens??? Do I need to modify all my scripts to $HTTP_POST_VARS??? Thanking in advance, Nuno Lopes

[PHP] Converting week number to unix timestamp

2002-06-12 Thread webmaster
How can I convert the week number(i.e. 1 - 52) to a UNIX Timestamp?   Thanks   JJ Harrison[EMAIL PROTECTED]www.tececo.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP function for listing number of columns in table

2002-06-08 Thread webmaster
Pardon the probably stupid question but, Is there a PHP function for listing number of columns in a mySQL table? Thanks in advance JJ Harrison [EMAIL PROTECTED] www.tececo.com

Re: [PHP] Suggestions for getting started with poll app.

2002-06-08 Thread webmaster
- Original Message -From: "Nick Wilson" <[EMAIL PROTECTED]>To: <[EMAIL PROTECTED]>Sent: Sunday, June 09, 2002 12:15 AMSubject: Re: [PHP] Suggestions for getting started with poll app.* and then [EMAIL PROTECTED] declared> I want to build my own poll(The ones availble from sites

[PHP] Javascript & PHP cookies

2002-06-08 Thread webmaster
Is it possible to read cookies from javascript written by PHP and vice-versa?   Just out of curiousity   JJ Harrison[EMAIL PROTECTED]www.tececo.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Suggestions for getting started with poll app.

2002-06-08 Thread webmaster
I want to build my own poll(The ones availble from sites such as hotscripts.com are not quite what I need)   Could any one tell me of a *good* tutorial?   Particularly the number of questions would be different between each poll not a fixed number.   JJ Harrison[EMAIL PROTECTED]www.tececo.com

[PHP] invalid path

2002-06-08 Thread Webmaster
My OS is XP Pro. I installed my web folders in c:\web instead of c:\apache\htdocs My php folder is: > c:/php In the httpd.conf: DocumentRoot "/web/myweb" ScriptAlias /php/ "c:/php/" AddType application/x-httpd-php .php Action application/x-httpd-php "/php/php.exe" In my Php.ini: include_

RE: [PHP] Trying to list a directory content HELP PLEASE

2002-06-07 Thread webmaster mbtradingco
[EMAIL PROTECTED] > Subject: Re: [PHP] Trying to list a directory content HELP PLEASE > > > On Friday 07 June 2002 00:47, webmaster mbtradingco wrote: > > I know my doubt is probable odd, but I would ask your help please. > > > > I need a user to be able to selec

[PHP] Best way to store 1000 char in a database

2002-06-06 Thread webmaster
What is the best way to store text with up to 1000 characters in a mySQL database?   Sorry for the slightly of topic posting but I am not going to join another mailing list unless I have to.   I am going to create a weekly qoute generator thingy for my site.   JJ Harrison[EMAIL PROTECTED]www

[PHP] Trying to list a directory content HELP PLEASE

2002-06-06 Thread webmaster mbtradingco
I know my doubt is probable odd, but I would ask your help please. I need a user to be able to select an image from a directory, from a drop down box. For this I need to list all the images available on the directory, hence, I have this code: ".$f.""); } ?> ."); b

[PHP] Printing Large Blocks of Text

2002-06-04 Thread webmaster
What is the best way to print large blocks of text within a PHP function?   JJ Harrison[EMAIL PROTECTED]www.tececo.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] echoing two varibles(newbie)

2002-06-03 Thread webmaster
How can I echo(or include) two variables?   ie include $DOCUMENT_ROOT then $row['location']   Thanks in Advance   JJ Harrison[EMAIL PROTECTED]www.tececo.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Not sure how to loop this...(Newbie)

2002-05-31 Thread webmaster
I have this code:   $end_date = time(); $year = 2002; $month = 4; $monthi = $month + 1; $time = SecondsInMonth($month, $year); $time_i = SecondsInMonth($monthi, $year); $query = "SELECT * FROM news WHERE date < $time_i AND date > $time ORDER BY id"; $result = mysql_query($query); $num_results

[PHP] Replacing Number with Month(newbie)

2002-05-31 Thread webmaster
Is there a magical function that I can use to convert 4 into April and 5 into May etc?   can I use mktime()   One yes no answer will do fine   JJ Harrison[EMAIL PROTECTED]www.tececo.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Month Values in UNIX timestamps and workaround(Newbie)

2002-05-29 Thread webmaster
I began to write a function that correctly diveded up the months into their correct UNIX timestamps and wrote content from a database accordingly.   I have had an idea that maybe eaiser to implement but slower. Could one or two people tell me what the think and if it is a good idea. I am als

Re: [PHP] Parse Error(newbie)

2002-05-29 Thread webmaster
Notepad at the moment as I can't change the settings of my computer due to lack of privilages - Original Message - From: "Jason Wong" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, May 29, 2002 11:26 PM Subject: Re: [PHP] Parse Error(newbie) > On Wednesday 29 May 2002 21:22

[PHP] Periods with UNIX timestamps

2002-05-29 Thread webmaster
Where is the best place to find out the values in seconds(i.e. UNIX time stamps) for standard periods of time such as one day and one week and one month(The month thing would need to be correct for each month)   JJ Harrison[EMAIL PROTECTED]www.tececo.com -- PHP General Mailing List (http://

Re: [PHP] Parse Error(newbie)

2002-05-29 Thread webmaster
Line 81 is $query. I showed it in my first email. I suspect this line is the one causing the trouble(It is about four lines above the start of the function and is the only previous PHP statement) mysql_query("delete from conf_event where time < ( time() ); - Original Message - From: "Ja

Re: [PHP] Parse Error(newbie)

2002-05-29 Thread webmaster
Here is the function: function print_new_story(){ $query = "SELECT * FROM news ORDER BY id DESC LIMIT 1"; $result = mysql_query($query); $num_results = mysql_num_rows($result); for ($i=0; $i < $num_results; $i++) { $row = mysql_fetch_array($result); echo ': '; echo $row['title']

[PHP] Parse Error(newbie)

2002-05-29 Thread webmaster
I get a parse error on this line   $query = "SELECT * FROM news ORDER BY id DESC LIMIT 1";   I believe that it is an error in the SQL statement   Thanks in advance   JJ Harrison[EMAIL PROTECTED]www.tececo.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www

[PHP] auto_increment

2002-05-28 Thread webmaster
I think this is any easy question, but I couldn't find an answer in the php Black Book for PostgreSQL. Does anyone know the equivilant of auto_increment for PostgreSQL? This is the php code that I have: $query = "CREATE table $tablename (id INT NOT NULL PRIMARY KEY, ip TEXT, customer TEXT, dslp

[PHP] Parse Error(Newbie)

2002-05-26 Thread webmaster
I know it is probably something obvious but the following gives me a parse error and as a newbie I am having trouble locating it.   $query = "select * from news WHERE id = "$_get['id']"";   JJ Harrison[EMAIL PROTECTED]www.tececo.com -- PHP General Mailing List (http://www.php.net/) To unsub

[PHP] Confusion with UNIX date/time

2002-05-24 Thread webmaster
What php functions should I use to convert a UNIX timestamp to a human - legible format and back again?   I have looked in the manual and used google etc but I am only getting more confused :}   JJ Harrison[EMAIL PROTECTED]www.tececo.com -- PHP General Mailing List (http://www.php.net/) To u

[PHP] Parse Error(Newbie)

2002-05-23 Thread webmaster
I get a parse error on line 114 can anyone see the problem?   Sorry if it is something obvious :} for ($i=0; $i <$num_results; $i++) 110. { 111. $row = mysql_fetch_array($result); 112. echo ''; 115. echo $row['description']; 116. echo ''; } JJ Harrison[EMAIL PROTECTED]www.tececo.com -- PHP G

[PHP] Reverse mySQL date

2002-05-21 Thread webmaster
How can I reverse the date coming out of mySQL?     ie 2002-05-21   becomes 21-05-2002   Can do it in the mySQL query or do I need to use PHP?   Thanks in advance,   JJ Harrison[EMAIL PROTECTED]www.tececo.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www

[PHP] Searching for any number in a mysql query

2002-05-21 Thread webmaster
This isn't a one hundred percent PHP Q but here I go.   If I have the following query: $query = "SELECT code FROM links WHERE ".$text." like '".$l."%' ORDER BY sort_text"; and define the letter a letter i.e x. it works fine. I am not sure what to do if I want to say get something that start

[PHP] Problem with

2002-05-18 Thread webmaster
I have the following code for a mySQL query in php:   $text = "sort_text"; $query = "SELECT code FROM links ORDER BY $text WHERE ".$text." like '".$l."%'"; $result = mysql_query($query) or die("Query failed"); When I do the query I get Query failed. When I remove the sort parameter they are

[PHP] Complex(ish) Question for Newbie

2002-05-18 Thread webmaster
How can I return the last five lines of a mySQL database table?   JJ Harrison[EMAIL PROTECTED]www.tececo.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] (newbi)mySQL query question

2002-05-18 Thread webmaster
This doesn't have a huge amount to do with PHP but,   I have the following code for my SQL query: $query = "SELECT code FROM links WHERE sort_text = $letter*"; I get an error. What I want to do is be able to specify a letter and have the rest be undefined eg if $letter was t I would get TecE

[PHP] document root variable or function

2002-05-17 Thread webmaster
Is there a variable in PHP which will show the directory of the document root? I have done a few searches and before I go looking harder I thought I'd ask. My problem is that I am using both windows, IIS and linux, Apache. I tried a few things like $document_root which didn't seem to work bu

[PHP] Listing the contents of a directory in an array

2002-05-17 Thread webmaster
I am a newbie so be kindI have looked into the manual about directory functions etc.I want to return all the files from a directory into a array.   Could some one give me a few pointers or something?   I keep getting confused but I have used google and the manual.   I can find functions but

Re: [PHP] PHP and mySQL

2002-05-14 Thread webmaster
You are missing a " before $booktitle. old:booktitle=$booktitle AND quantity=quantity"; new:booktitle="$booktitle AND quantity=quantity"; JJ Harrison [EMAIL PROTECTED] www.tececo.com - Original Message - From: "Jason Wong" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 14

RE: [PHP] Re: MySQL or FlatFile

2002-05-13 Thread webmaster
I am very new to PHP(Still awaiting a book, Only done a few tutorials and read bits of the PHP manual).   But if you used: mysql_pconnect($host, $user, $password) It would keep a consistant connection to the database so it may speed things up a bit.   JJ Harrison[EMAIL PROTECTED]www.tececo.co

Re: [PHP] .vcf files and PHP Email Form(Newbie)

2002-05-11 Thread webmaster
I don't have much experiance with MIME. where could I find a tutorial or ready made class? - Original Message - From: "Miguel Cruz" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Sunday, May 12, 2002 4:41 PM Subject: Re: [PHP] .vcf files and PHP Email Form(Newbi

[PHP] .vcf files and PHP Email Form(Newbie)

2002-05-11 Thread webmaster
I want to create an e-mail form that writes a (person's name).vcf(vCard) file and attaches it to the message. This would allow me to eaisly add people to my address book. The source of a sample .vcf(vCard) file is shown below: BEGIN:VCARD VERSION:2.1 N:Harrison;JJ FN:Harrison, JJ ORG:TecEco Pty.

[PHP] Defining PHP varibles from URL Solved!

2002-05-06 Thread webmaster
Sorry I did read all your replies etc. They were helpful.   I have now solved the 'problem' and thank you all.   I have less than week of experiance in PHP and am still learning.   JJ Harrison[EMAIL PROTECTED]www.tececo.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, v

[PHP] Defining PHP varibles from URL

2002-05-06 Thread webmaster
I don't mean to be a pain but could someone send me a working example?   I am what you would probably call a 'newbie'   For those who don't know here is my previous message    can't seem to define a varible from the url entered into a browser.   I wish to use the following code or something

[PHP] Defining PHP varibles from URL

2002-05-04 Thread webmaster
I can't seem to define a varible from the url entered into a browser.   I wish to use the following code or something like it. ="php">

$file = "";
//the above is defined from the url

inc


[PHP] Pixel Length of text message

In html/css you can set a font size in pixels -- in my experience this means a letter takes the same number of pixels, regardless of resolution. With php, can I use string length and font pixel size to determine the length of a given string on a screen? Does anyone know an algorithm for this that

[PHP] auto_increment

I'm using PHP v.4.0.6. and PostgreSQL 7.2. Does any one know the equivilant of auto_increment for postgresSQL? For example when creating a table: $query = "CREATE table $tablename (id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, firstname TEXT, lastname TEXT, emailaddress TEXT, )"; this w

[PHP] authorization headers

does anybody know how to pass the correct username and password as a header to a directory with an .htaccess file. i tried header("Authorization: Basic username:password"); like that and also where the username:password was base 64 encoded and it isn't working. thanks. -- PHP General Mailin

[PHP] creating table help

I'm very new to php and PostgreSQL. I keep getting the following error when I try to create a table: Warning: Wrong parameter count for pg_exec() in /var/www/html/elkan/createtable.php on line 23 The table, ghdsl could not be created Here is the code I'm using: thanks for any help. -- PHP

[PHP] Webmail

Hi can anyone quickly run through how to use php to send the contents of a form via e-mail using sendmail? How do you begin? thanks [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP and passwords

Is there a way to connect to your database using php without hard coding a password into the php file? We run PostgreSQL 7.1 on a Linux 7.2 server with the latest version of apache. I don't want to change the authentication within Postgres to not require a password. But I also, for security rea

[PHP] Timed Jobs.

Hi:   I was wondering if it is posible to make in PHP a cron job, that will trigger an event (i.e. send an e-mail) long after the process of the data has taken place, like programming an e-mail to go out, on an specified date.   My question is, since the script is run and triggered by t

[PHP] form opens a php window.

Hi, I have a form, that I need to control the parameters in the _blank target once it is submitted.   Everything works, fine except the client wants the result of the poll in a popup window, and I am not able to control the parameters on the new window.   Can any one help me with this?

RE: [PHP] Help please

nt in the form, then it opens the php procedure in the same window an works. If I add a _blank target it also works, but the new window never works. Thanks. -Mensaje original- De: Bogdan Stancescu [mailto:[EMAIL PROTECTED]] Enviado el: Sábado, 16 de Febrero de 2002 21:51 Para: webm

RE: [PHP] Help please

access below the enviar, and see what I need the submit button to do. Thanks. -Mensaje original- De: Bogdan Stancescu [mailto:[EMAIL PROTECTED]] Enviado el: Sábado, 16 de Febrero de 2002 20:43 Para: webmaster mbtradingco CC: [EMAIL PROTECTED] Asunto: Re: [PHP] Help please Since

RE: [PHP] Help please

below the enviar, and see what I need the submit button to do. Thanks. -Mensaje original- De: Bogdan Stancescu [mailto:[EMAIL PROTECTED]] Enviado el: Sábado, 16 de Febrero de 2002 20:43 Para: webmaster mbtradingco CC: [EMAIL PROTECTED] Asunto: Re: [PHP] Help please Since you'

[PHP] Help please

I’m trying to control the way a new window opens when submiting a form.   When I do it from a regular button, I use:   rollbars=0,width=300,height=340,top=150,left=150');return true">   and it works, it opens the new window, but I’m not transferring any values in here.   What I wan

[PHP] mailing list manager

Hello, i need a mailing list manager in php, with which i can send html email and store my subscribers in a mysql database anyone knows where i can get one? thanks, Christophe -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional command

RE: [PHP] MySQL function in a Table's Column

Look Pared, basically, if you want to do that, is done in the program portion of it through variables, that way every time it reads the data, it calculates the output. If you do the math, and then save it to the record, it might not be accurate at all times. I'm of course not an expert, so I will

[PHP] Installing ODBC

Hello, I have problems compiling libiodbc-3.0.5 I have tried to compile being root and being a normal user and I get the same error. I execute $ ./configure --prefix=/usr/local --exec-prefix=/usr/local --with-iodbc-inidir=/etc --build=i686 and it works properly (I

[PHP] best linux choice for php / mysql ???

I've been using PHP/mySQL on my web host's site for a year or so, and I now need to create my own installation ... Given my relatively limited linux background, which distribution woud I find easiest to install? I'll be needing PHP, mySQL, and PDFlib ... I've done my homework, I've studied every

[PHP] execute remote CGI without redirect

How do you call for the execution of a CGI on a remote machine without redirecting the output of that CGI to the browser? I basically need to send form info to a CGI of a marketing group, while keeping the browser on my site. Thanks, _Ken [EMAIL PROTECTED] -- PHP General Mailing List (http://

Re: [PHP] Re: Compiling php like C

You can make an "compiled file" with a program like zend optimiser etc... because it pre-compile your script to increase the the rapidity and the disponibility. so look at www.zend.net c you Andrew Perevodchik wrote: Has anyone done this to date?? I was thinking of compiling my programs for

[PHP] Unresolved Mistery Error in PHP

Hi people: I trying to run a script from my shell but I get this error: [root@corotu docs]# ./phorummail php: error in loading shared libraries: libmysqlclient.so.6: cannot open shared object file: No such file or directory Well, some people said to me that usually this library is located in /u

[PHP] Problem with PHP y Phorummail

Hi people: I trying to execute Phorummail script (put email into a web message board) from my shell, but I get this error message. [root@corotu docs]# ./phorummail php: error in loading shared libraries: libmysqlclient.so.6: cannot open shared object file: No such file or directory What can I

[PHP] form data used on the same page?

Greetungs. Is it possible to use data collected in a form ON THE SAME PAGE without using the form's "submit" button? In other words, if a text field is filled in, can I capture (via PHP or other means) the info typed there and display it elsewhere on the same page? I realize the answer may very

[PHP] Your invitation to the Legal Solutions Europe 2001 Conference

Hi My apologies for writing to you unannounced. I came across your name whilst researching some data for the above event and I thought it might be of interest to you. For more info see below or visit www.lseurope.com This is Europe's largest and most prestigious IT solutions event. It incorpor

[PHP] Installing PHP

Hello, I'm trying to install PHP 4.0.5 in a Solaris machine with web server Netscape Enterprise Server. I have problems with the file libphp4.so conf_init: Error running init function load-modules: dlopen of /opt/netscape/iplanet4/bin/libphp4.so failed (ld.so.1: ns-httpd: fatal: rel

[PHP] Connecting PHP to SQL Server

Hello, I have to connect one Solaris computer (Netscape Enterprise Server) with PHP to another one with NT (database SQL Server). I have to get data from the SQL Server database using PHP. Is it possible? How? Thankyou. Regards. Félix García Renedo mailto:[EMAIL PROTECTED] mai

Re: [PHP] protecting video files

I did :( went character by character and could find not extra spaces. At 06:16 PM 5/11/01 -0400, Michael Kimsal wrote: >Check for extraneous spaces in your script. > >Tim Schulte wrote: > > > Hi there - > > > > I am having some weird problems here. I am try to write a script that > > will che

[PHP] Double your website traffic

Do you want to double the number of visitors to your homepage everyday? The perfect solution is PopUp Window Exchange! It's a brand new concept from LinkExchange. It will pop up websites instead of traditional banners. As a result, it can bring you REAL web traffic instea

[PHP] Hey Everyone

Hi Everyone, I just wanted to let you know (and thank some of you for all your help!), that I've finally launched my revamped website. There are two main sections in the site: Section 1 is for High School and College Students and has almost 3000 Essays available. Section 2 is for anyone seeking

[PHP] Putting php at end of html?

I am creating a site right now and I think many of the pages will use php in the future...But not right now. Should I put the .php extentsion at the end of these pages now even though they currently do not have php on them. So there anything that can go wrong if I do this? Steve -- PHP Gene

[PHP] Retrieving Version numbers.

Hey all, New to the list. The only reason I joined was because searching the = archive is a joke. Try to search for something using more than one word = and you get it all. hehe. Anyway, I tryed a search and didn't find anything on this so here goes. I need to retrieve the version number fro

Re: [PHP] Wondering whats wrong?

Yeah that was it exactly what was wrong. Thank you! *** REPLY SEPARATOR *** On 13/01/2001 at 18:03 Sterling Hughes wrote: >Toby Butzon wrote: >> >> This is a matter of figuring out why the variable isn't a >> valid file handle resource. To do so, find where it should >> be mad

[PHP] Comparing Memory Variables

Hi Everyone, I am having a little trouble getting a memory variable and a session variable to compare correctly I have an if statement as below: if ($id=='{$SESSION["id"]}') { echo "working"; } ID is a memory variable that is equal to five, and the session variable id is also equal to fi

<    1   2