Please Cc: me directly, if possible. Thanks!
[This got long, but a search for "Synopsis:" (two of them) should give the
gist.]
Originally, the machine (Linux 2.4.19-16mdk) had Mandrake 8 RPM's of PHP
4.2.3 and Apache 1.2.26
I was able to install LIBFDFTK.SO 5.0 and the .h file, symlinked to
low
>Karsten Dambekalns wrote:
>> Hi!
>>
>> Sorry for the 'longish' post... I am working on a script that generates
>> FDF data and sends it to the browser for display in a PDF file.
> ...
>> But it works only in Mozilla, MSIE starts Acrobat Reader which then pops
>> up an alert window saying (transla
Oooh, and I forgot!
In addition to all the other Microsuck non-compliance...
IE just plain doesn't like the IDEA of a dynamic PDF file.
Thus, if you use the usual no-cache headers, it will puke on you.
So what you have to do is embed a random part in your URL.
Continuing with our example from
Not specific to PHP really, but it all started with a simple PHP script I
was automating...
I've used cron/crontab on a zillion machines, and it always worked
flawlessly.
Well, once I'd get the actual shell commands and permissions right anyway.
But this time...
The cron jobs just aren't having
I don't suppose anybody has any HIPAA stuff implementing something like:
ASC X12N 270/271 (004010X092) or its subsequent standards in PHP?...
Email off-list if you have any idea what I'm talking about, since *I*
don't even want to really do this, so I doubt too many others are
interested...
What
I'm taking a survey of Webmail Solutions at:
http://l-i-e.com/compare/
It's a crude grid of "Solution" and "Feature" with user-voted ratings.
If you love a particular solution and care to vote, have at it.
If you think I've missed some crucial feature, add it.
If you think I've missed some won
>Is there any way to fseek (or something to the exact same effect) a file
>opened with "a" or "a+"?
>
>I've tried rewinding and fseeking appendable files, but neither work.
>
>Opening up in "r+" gives me part of the desired result, but if where I want
>to write is not at the end, it writes over th
>Is there much of a difference in speed or efficiency between INCLUDEing
>files in a script or loading data from a database? I'm building a dynamic
>menu system for a website and not sure if it would be faster to store button
>data in a DB or just do it with Included files.
How fast is your hard
>I'm trying to access some settings in the $HTTP_SERVER_VARS[] array, but,
>within a custom function() this array appears empty. In the calling script,
>however, the $HTTP_SERVER_VARS[] array is defined.
>
>I thought this was supposed to be "superglobal" and available on every
>level? If not, is t
>This may be a pretty naive question.
>Do we have to use the key word
>session_register("variablename");
>in every single page, in which we plan to use the "variablename"?. Or is it
>possible that we register the variablename once, and in the subsequent pages
>continue to access it using $variabl
>Is there a way to display an image withouth sending the headers first?
Not reliably.
*SOME* broken browsers will use the apparent "filename" in the URL to decide
what kind of document you are sending, even if you *DO* send the headers!
Grrr.
So you really want your URL to "end" (before any ?) i
>i get php to allocate a colour then make it transparent using
>imagecolortransparent()
>
>instead of turning it transparent it becomes black.
>
>Is it something i'm doing wrong? can anyone help me?
Show us your code.
--
Like Music? http://l-i-e.com/artists.htm
--
PHP General Mailing List (
>My question is what can I do if someone searches for php script for search?
>
>I would want to use OR in my SQL statment. The problem is how do I write the
>query so that it will detect the number of words sent then put enough ORs
>and LIKE '%$search[1]% in?
The LIKE operator will cheerfully ret
>Well, trying to updrade on Slackware Linux 8.0 and compiling with the GD
>(1.8.4) libraries are giving us some headaches. Some of what seems to be
>wrong;
>
>phpinfo() does not show new build times for each compile, not seemingly a
>caching problem (we have shut down browsers and then re-opened t
>Hi,
>
>I'm not sure how to do this but I have a form which I wish to do the following.
>
>When the uses clicks the "submit button", I wish to perform a check where I
>look for a value in a MySQL database. If found, I need
>to return an error page telling the user that the value already exists.
>On Mon, 22 Jul 2002, Marko Karppinen wrote:
>
>> PHP Security Advisory: Vulnerability in PHP versions 4.2.0 and 4.2.1
>
>Not only did I get to re-write all my apps the past few months because of
>the new register_globals default that was imposed by `the php group`...
You could have just *CHAN
>What are some good e-commerce stores written out there for PHP and mySQL??
I got tired of this question cropping up all the time, years and years ago.
Your answer lies here:
http://l-i-e.com/compare/
:-)
--
Like Music? http://l-i-e.com/artists.htm
--
PHP General Mailing List (http://www
>I am trying to execute a Script running a telnet command
>testing through a range of IP connections...
>Here goes:
>
>$str = "123.456.789.";
>$count = 0;
>
>while ($count < 999){
>$runTheScriptCommand...
>}
>?>
>
>What I want to stick into the while loop is if connection
>
>Hi, tried this on mysql list, no luck:
>
>I want to be able to view a single log that contains the following:
>
>IP of user : page_name (PHP only): time/date: MySQL query ( 'select *
>from xxx' etc.) : error msg from mysql/php if any
>
>So it's almost a hybrid between apache and mysql with some
>Below is how the decide.php script registers the variables.
>
>session_start();
>
>
>if (!$phpsessid)
> {
> session_register("$employee");
session_register('employee');
Right now, you're registering the variable named something like 'Bill Jones'
which isn't even a legal variable name.
--
Lik
>getservbyname takes in the following arguments:
>
>getservbyname(string service, string protocol);
>
>is the parameter service similar to those diefined under
>unix's /etc/services file or is there something else
>to it?
Just based on the docs, I'd have to say you simply have to have a "match"
f
>Hi,
>
>I have been running 4.1.2 for a while with no problems. This morning, I
>downloaded 4.2.2, did a configure/make/make install. All seemed to have
>gone well. However, it broke all my sites that use PHP. Here is a
>description of how it appeared to be broken. This is just an example,
>Yes, that's exactly what I want to do. But HOW do I do it?
>
>i.e. I'm sitting in my accept connectinos loop in the chat daemon
>
>While(true)
>{
> //waitforenwconnection
> $new_connection_id=socket_accept();
>
> //got a new connection, go process it
> go_do_this_in_a_new_thread($new_connection
>Tried to check the archive, but it is offline...
>
>What does the "," and "{}" do in this type of statement?
>
>Example: echo "{$strName}", htmlspecialchars( $teststr );
The {} makes it *VERY* clear to PHP that $strName is a variable to be
"interpolated" into the string.
This Programmer has ac
>Hi ...
>
>I want to be warned about php security issues, I couldn't find
>an exact match in the mailing list names ... which one do you
>recommend me?
I believe that the Announce list would have any critical security warnings
sent to it.
It's also very low-volume.
--
Like Music? http://l-i-e
>Not being an expert in php..i couldnt understand the vulnerability.
>Can someone shed some light here.
Very short explanation:
Upgrade.
Now!
Longer one:
If your web-site has *ANY* FORM tags on it, and you have PHP
ready-and-waiting to process those FORMs, then somebody could manage to
create
>
>>>I want to be able to view a single log that contains the following:
>
>>
>>http://php.net/error_log
>>
>
>how about this curve... getting PHP to append a line to the apache log.
How about reading the documentation?
http://php.net/error_log
>would much rather pump the clf formatted log sti
>Thanks, but all these "methods" require modification of the scripts
>already on the server, and it won't ensure any new script being written
>by a user on my system to comply.
That is correct.
>Are you all saying that there are no logs kept by default of errors
>generated on php/mysql pages
>> This Programmer has actually read the Documentation and believed the
>> warnings that some day just plain old $strName might not be enough.
>
>Where might these warnings be? I just perused this URL:
>
> http://www.php.net/manual/en/language.types.string.php
>
>especially where it talks about
>Im getting Warnings about headers being already sent. But not on my local
>web server
>
>Im sending the headers (to try and make the page not cache) before anything
>is echoed to the browser.
Somebody somewhere is sending *SOMETHING* to the browser -- possibly a
NEWLINE at the tail end of one of
>I have a site with all my movies and stuff stored in a database. And I have
>made a admin page where I can add, delete and update records. When I add new
>records, I have made a listbox for the category (ex. action, comedy etc.) so
>I dont have to write it every time I add a new record. But when
>I want to store image data into mysql table using BLOB
Why?
It's just going to clog up your database, increase the risk of your database
self-destructing, and you can't *DO* anything with the data in that blob.
Unless you're actually de-constructing the image pixels with SQL and doing
photo co
>hi i am trying to implement error handling in a join page, i would like to
>try and use one page if possible and then go through in steps like ?step=1
>etc , i would like to be able to return form variables to the previous step
>if there is an error, how could i do this ?
Honestly, I've always f
>I'm using mysql to hold references to image files then served on my pages
>via PHP.
>
>I have typically a set of two files:
>
>thumb and a large original, on occasion there is also a variant inreasing
>the set to 3 per image
>
>currently I am holding all of the files in 1 directory since the DB
>I've got the login part working perfectly, and I can turn the URL into a
>link on the page, but I'd rather have the script just automatically forward
>the person to the page they're login gives them access to.
>
>I've tried using header(), but since the redirection takes place about
>mid-scrip
>I want to point something out to aspiring authors. The truth is, that few
>books and web pages out there show examples using OO methods. For example,
>the book I use as my primary reference has one chapter on OO PHP and that
>is it. The rest of the examples in the book are in regular functi
>Any one please let me know how to use PHP to add new user to a domain for
>using mail (sendmail).
You mean like a *REAL* user with a login and everything?
Yikes!
DANGER, WILL ROBINSON DANGER!
You *REALLY* shouldn't do this unless you *REALLY* understand Un*x
permissions and system security.
>
>
>onclick = "document.all['tree'].status[].value='expand';
No matter what you do, JavaScript will *NEVER* accept the [ or ] character
as part of a field's NAME.
Those are RESERVED keys in JavaScript.
You'll have to refer to the INPUT by NUMBER, rather htan name.
onClick = "document.all.tre
>Well, I'm not sure about the 'you get what you pay for'. Some paid for
>software has less support and documentation than PHP!
In my experience, *ALL* paid-for software has less support and documentation
than PHP.
This is excluding support contracts for software you paid for -- Once you
pay Orac
>#!/usr/local/bin/php -q
>// don't timeout!
>set_time_limit(0);
>
>// set some variables
>$host = "1.2.3.4...";
>$port = 1234;
>$command = "/usr/games/fortune";
# I must be missing something, cuz I don't see where this $command is
used...
>// create socket
>$socket = socket(AF_INET, SOCK_STREAM,
>I saw a comment in the online docs about setting the return-path for
>sendmail for virtualhosts. However, the note did not say WHERE to put the
>line - I attempted to put it into apache's virtual host tag and that failed.
>The line was:
>
>php_admin_value return-path "/usr/sbin/sendmail -t -i -f
>I have an embedded object in my webpage which will play a DVD movie right in
>the page (provided you have a disc in teh dvdrom drive). One of the
>javascript methods attached to this object returns the current time. OK, on
>to the php/mysql part. I have a mysql database which has a table to ca
>is there a more programmatically elegant way of saying...
One option would be to just exit; when you get an error if the rest of the
script isn't going to execute and send out some closing tags you need
anyway.
Future versions of PHP might have a try/catch mechanism, but that doesn't
help you r
>Hi,
>
>I'm using PHP to connect and perform queries with a MySQL database. I've
>noticed that it there is an error performing certain
>commands like 'mysql_connect()', I'll get a warning message in the browser.
>
>I'd like to suppress these messages as I am storing the error,
>mysql_error(), i
>I read the useful document about XML in PHP on
>http://www.analysisandsolutions.com/code/phpxml.html. I still haven't made
>much progress on XML. I'm still confuse about XML. I had to write XML
>stuffs on the client-side with the build-in XML request and it doesn't make
>sense that the client
>After my host recently upgraded to the latest version after reading the
>recent advisory I have got an error that won't load one of my php pages and
>I can't see why not. Here's the error I get -
>
>Warning: Failed opening '' for inclusion
>(include_path='.:/usr/lib/apache/php') in /home/sites/si
>Very cute! "Upgrade Now!" It will work well with PHP newbies. Not!
If you are on Windoze, just download and run the installer or whatever you
did last time that actually worked, as much as anything on Windoze works.
If on Un*x:
Download 4.2.2 from http://php.net and save it in /usr/src or
>With php 4.2.2 I get this when trying to compile with apache 2 support:
>
>I grabbed a CVS version of PHP and during configure it lets me know that I
>need apache 2.0.40 -- since the latest release of Apache 2 is 2.0.39 I'm not
>sure what to do there.. Does that mean the latest apache 2 devel sou
>Hi,
>Someone please tell me how to install apache on redhat
>linux.
Download the web-server that is named apache-1.3.xx (highest xx) and ends in
.tar.gz from:
http://apache.org/
Save it in /usr/src or somewhere convenient.
cd to that directory:
cd /usr/src
Untar it:
tar -xzf apache-1.3.xx.tar
>Is there a way to limit the total number of persistent connection to an
>oracle database? I know this functionality exists for MySQL through a
>setting in the php.ini but I haven't found it for oracle. I am in an
>environment where we have about 10 users that connect to oracle from
>each of 10
>I have a challenging part to this project. Let's say the PHP webserver
>establish a connection to a different website and received the ssl
>connection from there. How do I get the certificate information from that
>website and display it? I can use print_r($GLOBALS) but it only display the
>ce
>I'm trying to connect to a Java application that's listening on a socket
>using SSL. I am trying to use fsockopen with the address beginning with
>ssl://, but it doesn't work. There's no error message that I can find,
>it just doesn't create the file-handler.
>
>Here's some sample code:
>
> $ho
>I have been running 4.1.1 due to any time I upgraded to 4.2.0 I would
>get emalloc errors. Now that this upgrade to 4.2.2 I am getting the same
>errors and this is a must upgrade. If any one can help with finding out
>why I am getting these errors I would appreciate it.
>
>
>[This is from my erro
>and i never see any copy.) My only guess is that a mysql_link resssource is
>also an object and gets copied or lost somewhere in the middle.
In the old days, a MySQL link resource was just an integer.
It is now a 'Resource' type internal to PHP.
I don't *think* it will get copied on assignment
>Is there any way to get the day of the week given a date.
>
>For example if the date is the 22nd July 2003 I want to know if it will be a
>Monday or Wednesday, etc..
>
>Any help appreciated.
http://php.net/date/
Also look at the strfromtime or whatever the heck it is.
--
Like Music? http://l
>Does anyone know of such a programme?
Untested code:
\n";
}
elseif (crypt($PHP_AUTH_PW, $passwords[$HTTP_AUTH_USER]) !=
$HTTP_AUTH_PW){
echo "Invalid Password\n";
}
else{
# Continue script here.
}
?>
--
Like Music? http://l-i-e.com/artists.htm
I'm looking for a PRO QUALITY
>
>>>how about this curve... getting PHP to append a line to the apache log.
>>
>>How about reading the documentation?
>
>Deserved that for not being clear enough... see below.
My apologies if I missed the word "access log" or even assumed you meant
"error log" when you just said "log."I sho
>..and how poor would the performance be if there were 813 shots in the
>movie? Thanks for your help
How fast/big is the surfer's computer?
It's the work on THEIR side that matters.
PHP can spew out 813 shots pretty quickly.
For that matter, if the movie itself is static, you can use PHP to j
>Worked on this a bit tonight, thought it might help someone out there! I
>looked at the bottomw of phpclasses.org at what they'd done to obfuscate
>their e-mail address using JavaScript. While theirs is much more complex, I
>couldn't figure a way to do it their way when you don't know the exact
>
>I'm currently locked in a battle with PHP and file uploads. I've
>searched the list to no avail. I actually found a guy with the same
>problem who ended up using perl to make this work. I'm trying to avoid
>that.
>
>The problem is, I'm dealing with huge POST uploads (100+ mb). And
Ye Gods!
>(This was from an email sent to Gabor, and the site said this address was for help)
>
>>This is not a definition of the $blah variable. $blah = 1; would be a definition.
>
>
>I've never had any problems using just $blah; before, it never errored on
>me once, is there any reason it does this? (by
>I have a user authentication system using sessions
>it checks username and password against a database.
>if correct it sets a variable in the session cookie (via $_SESSION) and
>redirects to the protected page which checks for that variable.
>if the user/pass is wrong it redirects to an error pag
>what has to be configured, and how, on a bsd server to allow the mail()
>function to work in php? using sendmail?
php.ini
Use the path to sendmail there, with the -t as suggested, and *YES* the
quotes *ARE* supposed to be part of it:
sendmail_path = "/path/to/sendmail -t"
You may also need to
>Hi Gurus,
>
>I am using PHP 4.1.1, Postgresql 7.2 and Perl 5.6.0 on Linux.
>
>I want to delete files in a directory,which were created 15 days back.
>
>I can not do it, with PHP filesystem and directory functions, as PHP runs as
>"nobody" user.
>
>Can anybody pls. help me ?
Well...
There are se
>I am new to using PHP on RedHat 7.3 and am running into a problem with
>ldap_connect(). When I attempt to run ldap_connect, I get the error:
>
>Call to undefined function: ldap_connect()
Even though you said "--with-ldap=shared" it just didn't "work"
You'll have to do ./configure again and fig
>Hi,
>
>which version of libpng and libjpeg is needed to use the bundled libgd
>in the current php tree.
>
>I using libpng 1.2.3 and php crashes with a segfault
>
>and with libjpeg62 (6b Mandrake RPM) in apache logs:
>
>gd-jpeg: JPEG library reports unrecoverable error: JPEG parameter struct
>mi
>I know I should not ask this question - but as I am not getting prompt
>reply from mysql mailing list posting it here too - Just in case anybody
>knows about it
>
>
>I am trying to install the mySQL on our remote server thr putty (SSH).
>Following are th
>Is it possible to make the browser wait say, 5 seconds before redirection by
>outputting headers? I know you can do it with meta tags but not how by
>outputting headers
The header version pretty much hits the browser long before your HTML, and
then the browser will immediately move to the new l
>Top 10 Locales --
>Washington DC (9 members)
>Amsterdam (7 members)
>Leeds, UK (7 members)
>London, England (7 members)
>Atlanta (5 members)
>Manhattan (below 42nd St) (5 members)
>Melbourne (5 members)
>Oakland-Alameda, CA (4 members)
>Nashville, TN (4 members)
>St. Louis, MO (4 members)
>
>I am
>My question is, if I have a user on my web site, and they leave and come
>back does their session still exist? the file in the /tmp folder exists
>until it is deleted by the OS? If the user comes back will they get
>assigned the same session they had before? I know the questions are
>pretty newbi
>I'm looking for the global veriable that lists the page before the page that
>i just came from. Anyone know what i'm talking about?
will tell you what you want to know.
--
Like Music? http://l-i-e.com/artists.htm
I'm looking for a PRO QUALITY two-input sound card supported by Linux (any
ma
>I have a column in my table named firstname with twenty records in it. How
>can i use php to pull out individual records (say for ex. record 16)? Also,
select firstname from blah
where id = 16
>how could i pull out all records upto number 15? Thanks in advance.
select firstname from blah
whe
>// Set the limit per page
>$sql_text = $sql_text . " LIMIT $start, $maxresult";
echo $sql_text;
>$result2 = mysql_query($sql_text);
if (!$result2){
echo mysql_error();
}
>
>// The navigation between pages
--
Like Music? http://l-i-e.com/artists.htm
I'm looking for a PRO QUALITY two-i
>You may already be doing it like this, but I think I found a new way to
>make select boxes auto-select (what data they put in) a lot easier. All you
>have to do is put a variable in each select tag that is equal to the value
>of the select option i.e.: -- then all you
>have to do is base the var
>Hello, I am stuck here. In the name of efficiency I want to lower the number
>of callls to the database. So I am trying to give the most stringent query
>possible. This is the problem: I have stored the surfers shopping cart,
>where each item is stored as a session variable.Now on the database I
>Is it possible to run PHP that is embedded within a string? I have a file
>that is read into a string and returned to the browser, how can I run that
>PHP?
http://php.net/eval
--
Like Music? http://l-i-e.com/artists.htm
I'm looking for a PRO QUALITY two-input sound card supported by Linux (a
>Hi there, I've got a quick question concerning PHP and mySQL. I've got a
>fresh server with recent versions of Red Hat Linux, mySQL, PHP and apache.
>My problem is that when I call mysql_pconnect, my PHP code hangs and
>doesn't proceed. I can't check mysql_error because it doesn't go beyond
>Hello,
>
>I have this example code:
>function doprint($a){foreach($a as $value)echo $value;}
>doprint(array('1','test','hello','and'));
>
>Question, is the array in memory after the function call?
>So, should it be better to use this:
>
>function doprint($a){foreach($a as $value)echo $value;}
>d
>I have a couple of scripts that fail with the error of:
>Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result
>resource in...
>
>I'm new to both SQL and PHP and I'm wondering if I have some setting
>turned off or what.
>
>Here's the piece of code that is failing (the seco
>PDF_set_text_pos($p, 80, 670);
>PDF_show($p, "Requirements:");
>
>works just fine outside of a function but if I put the same thing inside a
>function like so
>
>function help()
> {
> PDF_set_text_pos($p, 80, 670);
> PDF_show($p, "Test:");
> }
>
>I get this error
>Hi
>
>I am building (or attemting to build) an msn messenger class. I am having
>problems reading from the socket.
>
>I open a connection with fsockopen(), i then write commands to the socket
>with fputs(). I am reading wth fgets().
>
>It is all fine if I am reading one line returned by the ser
>I just connected to my web server and found that there was a new file named
>".Xauthority", which I didn't created. Does anyone know what this file is?
>Can I delete it?
If you tried to run X (X-Windows) at some point, that file would be created,
I think...
man X
might, eventually, if you dig
>is it possible to have optional values in a PHP function?
>
>some of the built in ones have optional parameters.
Yes.
And it's documented in the manual:
http://php.net/functions
And it's just like C anyway, mostly, so you could have tried it and had an
answer faster than asking thousands of pe
>hi all!!
>below is the display of one of my configuration of php on the first server..
>my question is that possible for me to hide out all the environment
>variables such as user, hossttype.. editor... term etc and how?
Try this:
Also, there *might* be arguments to phpinfo() that would d
Please cc me on answers, as I'm way behind in this list...
I have a perfectly good Ming (Flash) movie coming out of PHP, but it's a bit
large...
I'd like to put this thing on a diet.
I figured I could do it with a Sprite for the tiny portion that's animated,
but I'm not getting quite what I exp
>Hi All.
>
>I am having a weird problem... my PHP is outputting a "libphp4.a" and
>"libphp4.la" modules and I can't get Apache to recognize this type of
>file. Is there a way to tell PHP to generate a ".so" module? Or how can
>I get Apache to use the .a and .la modules?
I *think* PHP outputs .so
>I am running my PHP application running on apache webserver.I am using
>Qmail(installed on Linux operating system) as an SMTP server..The problem
>is..I am not able to send any mails from my application using Qmail.Whereas
>I am able to send mails from my application using SendMail..My PHP
>a
>Does anyone have examples on how to use cookies with PHP?
Yes.
The manual has examples. Lots.
And there are a ton of them on every PHP code archive I've ever seen.
>I'm just getting
>into this and would like to know the difference between
>stored cookies and non-stored per session cookies.
>$cache_file_name = "cache/$id/$tid". ($showall ? '_all.php' : '.php');
>$cache_dir_name= "cache/$id";
>
>if(!file_exists($cache_file_name) || @filectime($cache_file_name) +
30 < time() ) {
If you may have loaded/altered the file system between calls to this
directo
>Is there a way to change the value of a global variable when someon clicks a
> URL link on a web page?
Not really...
Or, more properly, "Yes, but it wouldn't be the same global from PHP script
you're thinking of"
Let's look at HTTP in slow-motion:
1. Browser requests URL.
2. Server gets URL r
>I've recently had a need to write a standalone script that needs to fork off
>a number of children during its operation, and I'd like to use PHP since
>I've already written most of the functions in a web application I did in
>PHP. But, I'm now not so sure if that's feasible.
It can certainly be
>I am trying to figure out how to upgrade php from 4.1.2 (which is the
>default that comes with redhat 7.3), to version 4.2.2. From the small amount
>of documentation I have been able to find on the subject, it looks like I
>need to download a rpm. Is this the best way to do it or would it be bett
>How can i enable PostgreSQL module?
>I have installed PHP 4 on IIS5, Windows 2000
I don't *think* PostgreSQL runs under Windows, really...
You can maybe install the CygWin stuff (a Linux emulator under Windows) and
get that to "work", but:
1. Don't expect good performance. CygWin ain't a Ferr
> Suppose I'm opening a socket connection to a server on some
>port, and I do some transactions, and generate html. But I 'm not
>closing the file pointer(socket). Only after the user clicks 'logout'
>or something should I close the file pointer. How do I do this??
>I'm not understanding how to ke
>1) Integration with Outlook (yes the application will only ever be run on
>windows).
Define "Integration"... :-)
Does it need to read the user's Outlook mailbox files or something?
Or does it just need to send/receive email?
Or what?
I'll give as many answers as I can, but this is not really
>h. Ok. Can somebody explain this one? Why won't it work correctly?
>
>for($m=1;$m<=5;$m++){
> $div_idd[$m]=${'row->sub' . $m . 'd'};
>}
>
>Can it not be done with a 3 parter? The columns in the table that $row
>gets, are sub1d, sub2d, sub3d, sub4d and sub5d. Or is it the "->" that is
>
> We have to upgrade our PHP to the latest stable version on Redhat Linux
>7.3. We have lots of user using our PHP so what are all the precautions
>and steps involved while doing this operations without disturbing their
>existing program.
At a minimum, we gotta know what version you are *ON*
>I installed PHP when I installed Red Hat 7.2 without MySQL. I have now
>added MySQL but I can't figure out how to enable it in PHP. Can anyone help?
There are three possibilities:
1. PHP already has MySQL support, and you're done.
2. You need to install a different PHP RPM or tarball to get MyS
>There MUST be some creative way to call a user-defined PHP function from
>an tag.
No, there mustn't :-)
>Does anyone have any suggestions?
>
>For example:
>
>==
>
> Click here to start "function joe()".
>
>function joe() {
>
>Hi
>
>Can anyone recommend a good portal system / content management system
>(polls, forums, etc.) I have tried phpnuke but am bound to the standard
>layout of it i.e content in the centre and blocks on the left or right.
phpnuke has all kinds of skins and templates and whatnot with different
l
1 - 100 of 7407 matches
Mail list logo