Hi,
I'm running MySQL 4.0.21, Apache 2.0.52 and PHP 5.0.2 on a Windows XP
system. I can run scripts with PHP and HTML statements and see correct
output in my browser. But when I try to connect to MySQL I get nothing,
including no error messages.
One book I have says to run the following scri
I put the connect script above
it in the file.
It does sound like you have notices and warnings turned off in php.ini:
Find php.ini (not sure where it installs to in Windows version), and set
error_reporting = E_ALL.
This will show all notices and warnings generated by your PHP code;
extremel
Try this just for kicks:
Nope - nothing :-(
See if this will output errors. It's rather hard to debug without error
messages ;)
No kidding!
If I remember correctly, isn't php.ini supposed to be in c:/PHP?
It came in c:/php5 as php.ini-recommended. My instructions were to move it
to c
I added the following to the top of my script:
Got all sorts of environment and path info. Not anything about MySQL, but I
didn't see anything that looked obviously wrong, though I don't understand
a lot of it.
I ried reinstalling MySQL, Apache, and PHP. No change.
Linda
--
PHP General
For those who didn't join this thread at the beginning, I'm running MySQL
4.0.21, Apache 2.0.52 and PHP 5.0.2 on a Windows XP system.
I installed in the sequence - MySQL, then Apache, then PHP. MySQL was
running when the others were installed (which is what the book I am using
seemed to indica
do you have this in your php.ini extensions?
extension=php_mysql.dll
yes
Make sure you extension path is referencing its location also so it can
find it...
for example:
extension_dir = "c:/php/ext/"
I changed this and now I can connect to MySQL! Haven't runa query yet, but
I think I'm pa
Hi,
I'm trying to code a form that will call itself. The first time it is
called (by a link), it should display the empty form. If it was called by a
submit to itself, it will validate and then process or re-display the form
if it didn't pass validation.
In Programing PHP I found a technique
Where is fahrenheit? change the input name...
fahreheit is here:
The error was on the line: $fahr = $_GET['fahrenheit'];
Linda
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Where is fahrenheit? change the input name...
fahreheit is here:
The error was on the line: $fahr = $_GET['fahrenheit'];
Linda
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
I am needing to write a front end for an online application written in
Perl. Is there a way for PHP to call a module or function written in Perl?
Thanks,
Linda
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hi,
I must admit I am surprised at the paucity of date and time functions in PHP.
I have a date stored in a MySQL database in field of datatype date. PHP
doesn't seem to have a function I can use to format it for print. I tried
the following but regardless of the value in the date field, it di
Hi,
Does anyone know of a function for translating a decimal number into an
English number. In other words, if you pass it 1 it will return 'one', if
you pass it 127 it will return 'one hundred twenty seven', and etc.
Thanks,
Linda
--
PHP General Mailing List (http://www.php.net/)
To unsubs
there is any php code in the include, you
can't rely on the include being inside a php block. You must put a php
block inside the include as well. This is true no matter how you name the
include file (.php, .inc, .htm).
Linda H
--
PHP General Mailing List (http://www.php.net/)
To u
l include a key that connects it to the main record, the text,
and a sequence number that tells you the order in which the paragraphs
should be displayed).
Linda H
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
executable size?
--
Jim
James H. Thompson
[EMAIL PROTECTED]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
> On Friday 03 January 2003 05:54 am, James H. Thompson wrote:
> > We have a good size PHP libary -- about 370KB of source code.
> > Its one class with a multitude of small functions in it.
>
> that's a huge class. is it feasible to split it into smaller classes that
t;From: ".$Body=$mybody);
file://mail(,,,"From: ".$Subject="Registration");
file://mail(,,,"From: ".="[EMAIL PROTECTED]");
file://mail(,,,"From: ".$From=$temail);
?>
Please guide me
TIA
Manjunath H N
DISCLAIMER:
This e-mail and any
At some point recently, PHP/Apache running on FreeBSD decided that i'm on
GMT, instead of EST5EDT. The system date is correct:
bash-2.05a# date
Tue Aug 13 14:39:37 EDT 2002
But phpinfo() shows me:
_ENV["TZ"] GMT
What's the best way to get PHP thinking I'm in eastern time again?
Thanks,
Wade
On Tue, 13 Aug 2002, Rasmus Lerdorf wrote:
> Fix your Apache startup environment so TZ is set correctly.
I've got this in the apache startup script, but it's still on GMT:
bash-2.05a# head /usr/local/etc/rc.d/apache.sh
#!/bin/sh
TZ="EST5EDT"; export TZ
case "$1" in
start)
[ -x /usr/l
Hi,
I've updated to PHP 4.2.3 and wrote this simple Script:
";
}
?>
I would expect the following:
The site starts with the form, then I enter my name (Lars) and click the
send-button. Then the script says Hello Lars.
The actual output is:
The site starts with the form, I enter my name
I am running Apache 2.0.47 with PHP 4.3.3 on a Windows 2000 server, and
I am having some trouble getting cookie-less sessions to work. I've
search around trying to figure out how to get this to work, but most of
what i have found is people going to other way. To be clear, I am
trying to use P
Hi,
I have this litte tiny test-script test.php:
I would asume that $var would be an array, containing the offsets of the
found matches. Instead it is just a simple integer containing the number
of matches. Pretty much looks like preg_match_all is not returning the
right thing.
[EMAIL PROTECTE
hi..
is there a solution how i can get all iptc fields out of an immage ?
i tried the 'iptcparse' command wich works quiet well.. just that anny
commas are taken out..
like from the original field
'red,dog,cat' i just get
'cat' or like
'this, i want to show' returns
'i want to show'
for anny h
hi..
..i am curious if theres anny linux (x, KDE, Gnome) php editor with syntax
highliting and this things...
markus
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrator
Hello
This is my first post here and I am on the learning curve with php (php3 in
particular as it is all my host has) and need help with a multi-page form.
It is a subscription for users and consists of:
1) subscribe.php3
2) confirm.php3
subscribe.php3 is where the user enters data and then c
I figured it out...sorry to have troubled you. I left out the hidden input
fields
Bye
Todd
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTE
Hi
I have 2 forms:
subscribe.php
confirm.php
If the user enters data correctly in subscribe.php I have an an include
pointing to confirm.php. This gives the user a chance to review the data
before final submission.
I want the user to be able to click the back button on their browser and
view/m
Hi
JavaScript does not work in this instance. I will have to write code to
overcome Netscape's shortcomings I guess.
Thanks
Todd
- Original Message -
From: "Romulo Roberto Pereira" <[EMAIL PROTECTED]>
To: "Ignacio Vazquez-Abrams" <[EMAIL PROTEC
Hello
I am doing a job for a client who has a host that just installed php4 on a
WinNT system. He can not get the mail program to work properly.
The server that php is on and the mail server are different computers. He,
the host, asked me to try and by-pass the the mail utility and send directly
Hi
FrontPage is a piece of garbage...try DreamWeaveryou won't be
disappointed. It is available from Macromedia and does not munge your code
like FrontPage does!
Todd
- Original Message -
From: "Murph" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: January 16, 2001 9:50 PM
Subjec
Heh heh
Now were talkin'
:o)
Todd
- Original Message -
From: "Chris Aitken" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: January 16, 2001 9:11 PM
Subject: Re: [PHP] I love/hate FrontPage - need another HTML editor.
> At 09:06 PM 16/01/2001, Kath wrote:
> >Hey,
> >
> >To get Fron
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
I have a website where each new page access connects to a Postgres
database to load information. Each DB connect uses a $dblink=pg_connect()
to connect to the database. I'd like to avoid the overhead with opening a
new connection with every page.
S
ATH_TRANSLATED = /path/to/script.php (no matter what i request !)
Can anyone help me getting the real Apache PATH_TRANSLATED (which is actualy
shown in phpinfo() under "Apache Environment" but not under "PHP Variables")
Yours faithfully
Heino H. Gehlsen
--
PHP General Mailing
BTW
I using PHP 4.0.3pl1 on a standard Debian 2.2r2 box with Apache httpd 1.3.9.
- Original Message -
From: "Heino H. Gehlsen" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, January 17, 2001 9:28 PM
Subject: Apache's PATH_TRANSLATED
> I&
"PHP Variables")
Yours hopefully
Heino H. Gehlsen
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]
hi...
every time i do a session_start(); with php i get in the first two lines
of the output this
&PHPSESSID=ba606b5a90dbb4410417b4c612aaf1c9"">Your data Contact
LOGOUT
&PHPSESSID=ba606b5a90dbb4410417b4c612aaf1c9"">Contact LOGOUT
do i do something wrong ? can i put this message s
I use the following syntax on one site to get the names in the email message
and it works fine:
mail("$we_to<$we_demail>", "$we_subject", StripSlashes($message), "From:
$we_from<$we_semail>");
and it works
BUT On another site I must change it as such to get it to work:
mail("$we_to", "$we_subj
or large
scale sites !!!
Heino H. Gehlsen
- Oprindelig meddelelse -
> Its a PHP bug, I've attached a patch (that they persistantly ignore :).
> - Original Message -
> I'm trying to use the clasic CGI environment varable PATH_TRANSLATED via
> Apache'
Hi
Perhaps you could write to a flat test file, have your script read from
that. Then I would create an on-line interface for the client so he can
write to/delete from the list. He then would have control of it.
Todd
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sen
text file that is..oops!
- Original Message -
From: "Todd H MacPherson" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: January 19, 2001 3:23 PM
Subject: Re: [PHP] Profanity Filter
>
> Hi
>
> Perhaps you could write to a flat test file, have yo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
I'm doing a page where the front page will show "news" stories. What I'd
like is if the story is longer than X words/chars/etc, the index page will
show the first X words, then a link for the full story.
Does anyone have a good idea on how to split
hi..
are there anny functions / tools to "syncronize" or "mirror" two
databases.. ?
like i have one database (mysql) at my isp and one local here at my
development server, and i want to start every xx h a scripte who compares
the two databases and makes them "
That's incorrect, at least under PHP4. I've got the following file that
does the phpinfo stuff perfectly:
BEGIN FILE
END FILE
On Fri, 26 Jan 2001, John Guynn wrote:
> Actually what you need is otherwise you're never
> going to get anything on the screen.
>
> John Guynn
>
> This ema
hi..
i have the problem that i need to connect to a database on a server wich
is quiet often offline.
how can i connect to this database (mysql) and can check if the server is
online.
like.. if server is online -> fine we work as normaly
if server is NOT online -> print out message and say "ser
Hello,
Sorry if this is a little off topic but has anyone successfully used mod_dav with
dreamweaver 4.0, I have mod_dav setup but am having trouble connecting to it via
dreamweaver.
If anyone has successfully used this could they email me privately, as I don't want to
waste any more bandwidt
Hey all,
I am developming a site using FastTemplates, but I have run into a problem which it
looks like I will not be able to resolve, I have posted to this list and the makers of
FastTemplate but have recieved no clues on what is going on.
I have decided to try and find another template syste
hi..
i am looking for a database wich runs with php and supports big tables ...
i am thinking about areas in the range of 1,5-2TB.
can mysql handle that ?
i know ms-sql is good for databases at arround 1TB.
markus
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EM
hi..
i have 2 small questions
1. is there somehting like an archive since the verry first mail here ?
2. i can order "old" mails from the script who managed this folder right ?
but i need to say what number i want.. like i want number 499-550 ..
so my question what number do we have actually ? (
On Thu, 1 Mar 2001 07:58:23 +0100
Alexander wrote:
AW> If you want something faster, try Smarty.
Thanks, Smarty looks like it will do the trick and has some really neat features, like
being able to nest dynamic blocks, I think this was my problem with FastTemplate.
Regards,
Joseph
--
PHP Ge
Take a look at /var/log/httpd/error_log. Is there an entry for the very
first time the server was run (before you installed PHP 4.04pl)? Does
it list PHP/4.0 as installed? The initial entry in my error_log from
the "Wolverine" beta of 7.1 shows:
[Fri Apr 27 12:36:13 2001] [notice] Apache/1.3.1
Would somebody be so kind and tell us how to use the xslt_set_scheme_handler()
function ?
Heino H. Gehlsen
I've a problem with my script.
When i use POST method it's reply the same action for two times, when i
check my script everything ok.
Anyone can help me ??
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTE
can anyone help? I am getting the error below:
object(db_error)(10) {
["error_message_prefix"]=>
string(0) ""
["error_prepend"]=>
string(0) ""
["error_append"]=>
string(0) ""
["mode"]=>
int(1)
["level"]=>
int(1024)
["code"]=>
int(-24)
["message"]=>
string(24) "DB Error
> I'm doing a project to move my company off of microsloth exchange.
> I have dont qmail with courier imap, now I was looking for
> suggestions for the rest of exchange
> features, calendaring, scheduling and so on and so forth. Is
> there one good package?
Try TWIG. I've played with an older ve
It can be tricky to write download wrappers that work with all browsers.
Some versions of Internet Explorer seem especially troublesome.
I've found wrappers like these seem to work fairly well:
initialization();
authorization($user,$pw);
$info=get_file_info($filepointer);
### SEND HEADERS ###
he
> the combination of PHP and mysql and the ease of use of the mail()
> function obviously leads me to believe that it *should* be a cinch to
> use php to send customised messages to all my users , of whom I have
> details in a mysql table by simply running a "select * from table" and
> then using
Just had to solve this problem the other day. Here's a quick snippet to
display the time in Great Britain while my server's located in Boston:
This switches the timezone locale to GB, displays the local time there,
then switches back to Eastern US.
Peter
- Original Message -
From: "
Hi,
can any body know about free php & mysql free web hosting service provder ?
i will be greatful if u let me know
Kamran H. Hassan
the steps to upload my
website on that web hosting provider i will be very much greateful.
i registered a web space at http://khamid.multimania.com
hoping for reply and thanks in advance.
Kamran H. Hassan
_
U wrote
| www.multimania.com (php + mysql
> we have developed an application that in use at institutions
> throughout the U.S and hosted centrally,
Sweet!
> and we need to figure out how to handle timezone
> issues for time related data in the database. how have others handled the
> issue ?
> our thought is to associate a timezone with
Hey All!
I hit a snag yesterday on something I've done a million times before.
Perhaps one of you might be able to lend a hand.
Situation:
I use a Dell Latitude laptop for development. It's got pretty much
everything I need for my day to day needs. NT Workstation, mysql, mssql,
> I have mssql extensions working with the .dll in the extensions
> directory of my PHP4 folder.
>
> I am trying to get curl to work but when I try to run php it says that
> php_curl.dll was not found, But it is in the same dir as the mssql and
> mssql is working great.
I've never used curl, but
Hey All!
I might have a prospective client for someone local to the Cinci area.
Being up in Wisconsin I'm just not really able to fully help him out. There
will be some onsite work, so I'm out. Here's what he's looking for:
Skills:
NT Server setup
Xitami
PHP4
MySQL
Experience with a web
m?
Can anyone provide a hint as to why the above doesn't work?
Thanks.
_
Paul H. Breslinhttp://Canadian-Artist.com
mailto:[EMAIL PROTECTED]
--
PHP General Mailing List (http://www.
ring
> functions? They seem to implement what you're trying to do...
>
> http://www.php.net/manual/en/ref.outcontrol.php
>
> HTH,
>
> Richy
>
> -Original Message-
> From: Paul H. Breslin [SMTP:[EMAIL PROTECTED]]
> Sent: 21 December 2001 07:40
> To:
Same to you (and everyone else)!
(hey, at least it's a benign off-topic thread. ;] )
Have a lovely day tomorrow,
- Erik
> -Original Message-
> From: Emile Bosch [mailto:[EMAIL PROTECTED]]
> Sent: Sunday, December 23, 2001 4:49 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP] Merry christmas!
--
[1;36m¡± Origin:[35m²Hµµ»·«H«F [37m [m[1;36m¡±
from:[m[37mer.twbbs.org [1;36m¡±[m
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL
Does anyone know the status on implementing
MySQL's client functions get_lock() and release_lock()
in PHP?
The functions have been around since MySQL
3.21.27 was released in March 1998. Maybe it's about time
to get it into PHP as well?
/ Carsten
--
PHP General Mailing List (http://www.php.net
Hi Mike!
Generally the only way to send information from a clientside javascript to
a serverside language (in this case PHP) is via a form submit or putting
that value into an HREF the user will click. For example:
Save your screen settings...
(please note: this is all rough
A very high traffic site (don't mind the cheese-like content) that I used be
the developer for:
http://www.ecrush.com
14 million hits a month on avg...
- Erik
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL P
It's generally a whole lot better to do your form value checking with
Javascript. It'll be faster and alot less of a waste of your server
resources. IMHO, of course. :)
> -Original Message-
> From: Gerard Samuel [mailto:[EMAIL PROTECTED]]
> Sent: Monday, July 30, 2001 5:30 PM
> To: PHP
>
ssage-
> From: Ryan Fischer [mailto:[EMAIL PROTECTED]]
> Sent: Monday, July 30, 2001 5:48 PM
> To: Erik H. Mathy; PHP
> Subject: Re: [PHP] PHP_SELF
>
>
> You wrote:
> > It's generally a whole lot better to do your form value checking with
> > Javasc
Hi!
> Mac users can't upload all of their files.
"all" of their files? Out of curiousity, how many files do they seem to be
able to send up before the script falters? What error messages or behavior
does PHP show when it does falter?
Just looking for alittle additional info,
- Erik
--
PHP Ge
http://curl.haxx.se/libcurl/php/
Enjoy!
- Erik
> -Original Message-
> From: Brandon Orther [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, August 14, 2001 3:19 PM
> To: PHP User Group
> Subject: [PHP] cURL tutorials ?
>
>
> Hello,
>
> I am looking for tutorials for using PHP with cURL.
I haven't had to use IIS5 yet, but you might want to check in the IIS
setting for a max cgi execution time.
- Erik
> -Original Message-
> From: Raymond Siow [mailto:[EMAIL PROTECTED]]
> Sent: Friday, August 17, 2001 4:00 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP] cgi timeout
>
>
> Hi:
>
There are many. Get thee to Freshmeat and search for:
PHP mysql forum
http://www.freshmeat.net
Have fun,
- Erik
> -Original Message-
> From: Emiliano Marmonti [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, August 22, 2001 3:26 AM
> To: Lista PHP
> Subject: [PHP] Urgent!!! Forum code
>
>
Heya!
All adive given so far is good. You might also want to check for a
non-closed if { } statement.
If you've got something like:
-
html 1
html2
-
You'll get an error in the last line, where the resides.
Hope this is a helpin'
- Erik
> -Original Message-
> Fro
> I'm having an odd problem on a WinNT system.
That's what NT is all about. ;)
> When I try to do my upload, I test the file to see the type of it:
> $image_info = GetImageSize($the_image);
Out of curiousity, who don't you try using:
if(is_file($the_image)) {
do something...
} else {
> Encode (or compile) the source.
>
> Zend's compiler costs 2400 dollars. At this cost is better to
> release your code on an open source license ;-)
The open source license is only as effective as your ability to hire a
lawyer to enforce it. ;)
It also depends on:
a.) How much you're charg
> Now I am after Scripts and/or Functions that would be handy to use on at a
> LAN, or on a Website Related to LANs...here are just a few things I have
> thought up...
Get thy lazy behind to Freshmeat and Sourceforge. ;)
http://www.freshmeat.net
http://sourceforge.net/
Enjoy!
- Erik
--
PHP
> or should I say that IE & NS don't agree on standards.
Not to be too blunt, but what does that matter? IE owns damn near 90% of the
market nowadays. Even if AOL starts uses Navigator, that isn't going to
change much.
Don't get me wrong. Unless specified otherwise by a client I make all my
code
> If HE is the one who did these lame-ass sites:
>
> http://www.PHPBootCamp.com
> http://www.l-i-e.com
>
> I don't want to learn anything from him, that's for sure
Ay yi yi!
Listen here, Flame Boi, why don't you just keep your comments to yourself,
h?
Unless I'm mistaken, there aren't many
Hello,
I have an apaci 1.3 and php 5.0.1 running on my machine and when I enter a url in a
browser without a slash at the end of it I get the php script(!) instead of its
output. When I add a slash, it works all right.
Has anyone experienced this before? Did I just misconfigure something?
hc
-
I'm trying to tweak my server a bit and wonder if it is better to have a large
include file, say 20-40 kb with 15 user-defined functions, of which maybe 3 or 4
are used on any given page, or to have each function in it's own file and
include (disk access/read) them only as needed.
Is it faster/mor
Alawi,
You should get some sort of "nothing to repeat" error. Try moving the * to a +
and putting it after the [0-9]. I'm not sure that the * is picking up anything,
because it's not preceded by anything.
It could be that your $html doesn't match quite right, too (tabs and newlines
differ from
Guys,
I have to access a WS that uses HTTP auth directly with PHP.
I've tried using the usual http://user:[EMAIL PROTECTED]/ but I couldn't get it
working. I believe it has something to do with the password containing a #
(can't change it) and the browser thinks it's an achor or something.
All I
On Wed, Nov 19, 2008 at 11:34 AM, Craige Leeder <[EMAIL PROTECTED]> wrote:
> Thiago H. Pojda wrote:
>
>> Guys,
>>
>> I have to access a WS that uses HTTP auth directly with PHP.
>>
>> I've tried using the usual http://user:[EMAIL PROTECTED]/ but I
On Wed, Nov 19, 2008 at 12:15 PM, Andrew Ballard <[EMAIL PROTECTED]> wrote:
> On Wed, Nov 19, 2008 at 9:26 AM, Thiago H. Pojda <[EMAIL PROTECTED]>
> wrote:
> > Guys,
> >
> > I have to access a WS that uses HTTP auth directly with PHP.
> >
> &g
On Wed, Nov 19, 2008 at 2:49 PM, Boyd, Todd M. <[EMAIL PROTECTED]> wrote:
> > -Original Message-
> > From: Thiago H. Pojda [mailto:[EMAIL PROTECTED]
> > Sent: Wednesday, November 19, 2008 11:47 AM
> > To: Andrew Ballard
> > Cc: PHP-General List
> &
You can return (echo) a JSON or a XML with those results.
That way it doesn't store the file anywhere. :)
(I'd go for JSON + jquery)
Regards,
Thiago Henrique Pojda
On Sun, Dec 28, 2008 at 11:32 AM, Alain Roger wrote:
> Hi,
>
> basically i have a php file with several parameter received in GET
On Sun, Dec 28, 2008 at 12:41 PM, Tim Rude wrote:
> Using PHP, is there a way for me to read the values that a user has
> entered into the text fields of a prior to the user clicking the
> submit button?
If the user doesnt press the submit button PHP has no idea what's
going on there.
That's cl
[top-posting]
Congratulations guys, take good care of those new little persons!
This has been a great year, probably the best year for me.
Learnt a lot with you here and I hope I helped giving something back
to the community.
Keep up the good work, it's been great!
I wish I'll get married som
On Mon, Jan 5, 2009 at 12:05 PM, Shiplu wrote:
> This is a very common issue. I searched and found many sites talking
> about this. but no good solution.
> Well the problem is I want to set my session will expire after 10
> minutes of inactivity. Just like an banking site.
> When user is inactive
On Fri, Jan 16, 2009 at 10:36 AM, Sergio Jovani wrote:
> Hi!
>
> I have working at SourceForge.net project web space Drupal as CMS. I
> have many modules installed related with email like Contact, Notify...
> This modules never worked and I tried send an email from email php
> function. I did it
On Mon, Jan 26, 2009 at 4:13 PM, Robert Cummings wrote:
> On Mon, 2009-01-26 at 13:04 -0600, R B wrote:
> > Hello,
> >
> > Is there a way to be sure that a website is going to be accessed only by
> > traditional browsers and not from another
> > software that send to the server the same headers of
On Tue, Mar 17, 2009 at 10:42 AM, George Larson
wrote:
> In my scripts, I usually define a boolean constant DEBUG. True looks for
> local copies of includes and echoes queries as they're used.
>
> My question is:
>
> Is there any way for me to reflect the actual home folder of the person
> runnin
On Fri, Mar 20, 2009 at 3:23 PM, Ginkga Studio, LLC wrote:
>
> IF YOU WERE MY HUSBAND I WOULD SPANK YOUR ASS SO HAR YOU'D NEVER TALK BACK
> ANY WOMAN EVER AGAIN !!!
>
>
> Oh, gee.
Thanks for filters, Gmail.
--
Thiago Henrique Pojda
http://nerdnaweb.blogspot.com
On Mon, Mar 30, 2009 at 12:42 PM, Merlin Morgenstern
wrote:
> Some postings say that I have to compile php with --enable-zend-multibyte.
> HOwever those postings are very old (2003!).
> http://bugs.php.net/bug.php?id=22108
Did you see what Derick said abut this in the last comment?
*
[22 Aug 200
Hi all,
I think I'm having a problem with parse_ini_file in php. I am using wamp
on two machines. I'm installing a Digishop e-commerce package.
The blah.ini.php file starts with
[SOMETITLE]
some_setting="Ok, I Have Completed This Step"
another_setting="Next"
..
..
..
-
line problems). (Arnaud)
* Fixed bug #45956 (parse_ini_file() does not return false with
syntax errors in parsed file). (Jani)
So I installed PHP 5.2.5 and it worked.
Thanks to everyone for their help!
Richard Lee
Jim Lucas wrote:
Richard H Lee wrote:
Hi all,
I think I'm havin
101 - 200 of 337 matches
Mail list logo