But I wouldn't bet my children on advice found there. I just glanced at it
quickly but it was riddled with errors large and small.
miguel
On Tue, 28 May 2002, SP wrote:
> Here's an article you might want to read
> http://phplens.com/lens/php-book/optimizing-debugging-php.php
>
>
> -Origina
Though on further examination the tweaks section at the end seems good and
solid. I'd only gotten to the OS portion when I barked out my complaint.
miguel
On Tue, 28 May 2002, Miguel Cruz wrote:
> But I wouldn't bet my children on advice found there. I just glanced at it
> quickly but it was ri
Yeah I saw thatbut it did make some good pointsthanks SP.
ed
At 02:27 PM 5/28/2002 -0500, Miguel Cruz wrote:
>But I wouldn't bet my children on advice found there. I just glanced at it
>quickly but it was riddled with errors large and small.
>
>miguel
>
>On Tue, 28 May 2002, SP wrote:
>
I have wondered for some time if this is a bug or just an interesting design
choice ;) I agree with you, I was surprised when I first encountered this.
But it is what it is, so code accordingly.
Kirk
> -Original Message-
> From: Thalis A. Kalfigopoulos [mailto:[EMAIL PROTECTED]]
> Sent:
Look at Sequences for Postgres.
---
Scott Hurring
Systems Programmer
EAC Corporation
[EMAIL PROTECTED]
Voice: 201-462-2149
Fax: 201-288-1515
> -Original Message-
> From: webmaster [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, May 28, 2002 7:12 AM
> To: [EMAIL PROTECTED]
> Subject: [PHP] au
I would think that the first occurrence of ?> would/should
terminate the PHP code. This makes sense because the surrounding
text is HTML & the HTML parser does not understand PHP comments.
Yes?
> -Original Message-
> From: Johnson, Kirk [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, May 28
BTW: if my last message was correct, this means that an
occurrence of ?> embedded in a string literal will also cause
problems.
> -Original Message-
> From: Johnson, Kirk [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, May 28, 2002 4:08 PM
> To: [EMAIL PROTECTED]
> Subject: RE: [PHP] comment
But why wouldn't the parser skip right over a // line? it shouldn't even
see anything in it.
-Original Message-
From: Jonathan Rosenberg [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 28, 2002 4:46 PM
To: Johnson, Kirk; [EMAIL PROTECTED]
Subject: RE: [PHP] comment followed by ?> fails to
No the parser sees the ?> after a // because it needs to see when to quit
out (unlike traditional, compiled languages) but it won't have this same
effect in a string literal.
ed
At 04:40 PM 5/28/2002 -0400, Leotta, Natalie (NCI/IMS) wrote:
>But why wouldn't the parser skip right over a //
That makes sense. Thanks!
-Natalie
-Original Message-
From: Ed Gorski [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 28, 2002 4:46 PM
To: Leotta, Natalie (NCI/IMS); 'Jonathan Rosenberg'; Johnson Kirk;
[EMAIL PROTECTED]
Subject: RE: [PHP] comment followed by ?> fails to parse
No the pa
I've run into this before as well. Pain in the ass when you want to put
example code in your header. It's gotta be a deisgn flaw.
// literal.. legal
$tmp = '?>';
// reg ex.. legal
ereg('?>', $tmp);
// Comment.. illegal. Why? Makes no sense.
/*?>*/
-Kevin
- Original Message -
From
The parser needs to "emulate" the behavior of the HTML parser,
which will match the first ?> with the opening -Original Message-
> From: Leotta, Natalie (NCI/IMS)
> [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, May 28, 2002 4:41 PM
> To: 'Jonathan Rosenberg'; Johnson, Kirk;
> [EMAIL PROTECT
No, if you use /* ? */ as a comment the parser will skip right over
it.if you want to use sample code in your script just use:
/*
*/
that'll work fine
ed
At 02:48 PM 5/28/2002 -0600, Kevin Stone wrote:
>I've run into this before as well. Pain in the ass when you want to put
>example cod
OH NO IT WON'T.It'll comment out the and give you a
parse error.
*/
echo "hello";
?>
- Original Message -
From: "Ed Gorski" <[EMAIL PROTECTED]>
To: "Kevin Stone" <[EMAIL PROTECTED]>; "Jonathan Rosenberg"
<[EMAIL PROTECTED]>; "Johnson Kirk" <[EMAIL PROTECTED]>;
<[EMAIL PROTECTED]>
Which begs the question, why does PHP see a '?>' in a '//' comment line, but
not in a multi-line comment, e.g., /* ?> */ ?
> -Original Message-
> From: Ed Gorski [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, May 28, 2002 2:46 PM
> To: Leotta Natalie (NCI/IMS); 'Jonathan Rosenberg'; Johnson,
Exactly.. it doesn't seem to make any sense. Esspecially since it's such as
absolutely incredibly undeniably easy thing to check for. :) If the code
doesn't end with an uncommented ?> then just parse the code as text. That's
what it does anyway so why catch commented code at all?
- Origin
What version of php are you using? I just pasted that code in test script
and it came out fine with 4.2.1.maybe it wasn't the case in earlier
versions...
ed
At 02:57 PM 5/28/2002 -0600, Kevin Stone wrote:
>OH NO IT WON'T.It'll comment out the and give you a
>parse error.
>
>/**/
>
>
Hrm.. that's possible. I'm running v4.12
-Kevin
- Original Message -
From: "Ed Gorski" <[EMAIL PROTECTED]>
To: "Kevin Stone" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Tuesday, May 28, 2002 3:01 PM
Subject: Re: [PHP] comment followed by ?> fails to parse
> What version of php are y
This seems to me to be inconsistent/buggy behavior on the part of
the PHP parser.
To be consistent, I would think that it would want to act like an
HTML parser (browser), which will recognize the first ?>,
regardless of where it occurs. The idea being that if the PHP
code is passed through a ser
From my experience the PHP parser acts much like the HTML parser in the
fact that it doesn't give a damn about carriage returns
ed
At 03:01 PM 5/28/2002 -0600, Kevin Stone wrote:
>Exactly.. it doesn't seem to make any sense. Esspecially since it's such as
>absolutely incredibly undeniably
Well, one thing I know for sure is that there are members of the PHP
develpment team that monitor this list. Maybe one of them will clear this up
for us ;)
Kirk
> -Original Message-
> From: Ed Gorski [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, May 28, 2002 3:04 PM
> To: Kevin Stone; [EMA
Well it looks like they got half of it right by changing the /* */ issue
ed
At 03:06 PM 5/28/2002 -0600, Johnson, Kirk wrote:
>Well, one thing I know for sure is that there are members of the PHP
>develpment team that monitor this list. Maybe one of them will clear this up
>for us ;)
>
>Kir
On Wednesday 29 May 2002 05:03, Kevin Stone wrote:
> Hrm.. that's possible. I'm running v4.12
Works fine on v4.0.6
--
Jason Wong -> Gremlins Associates -> www.gremlins.com.hk
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
Th
Hi PHP ppl,
I have a directory named cartoons,
it has around 180 files in them ONLY images,
the filenames are 1.jpg, 2.jpg..5.gif, 6.gif etc etc
if you got confused with the above line its basically all the files are
numbered from 1-180 and the file types are mixed JPG and
GIF.
I have a prog
After you said the commenting worked on 4.06 I tried it again and it worked
for me too (4.12). How odd. The first time I tried this it gave me a parse
error.. same exact code (copied and pasted) but maybe it was a browser cache
glitch. Hmm.. my mistake I guess. :)
*/
echo "hello world";
?>
-K
How does PHP support server push?
I was reading PHP4-1.1 source code, and noticed PHP_FUNCTION(header)
(main/head.c) calls sapi_add_header_ex (main/SAPI.c) and thus calls
sapi_apache_header_handler (sapi/apache/mod_php4.c), and that function
puts a : into request_rec.headers_out
table.
So for
Hi there.
I've started to code in PHP a couple of days ago, so
I'm really a newbie.
As far as I understood it, for a server process the php
code, the file must have the extension .php
But then, the apache server (for example) requires a file
index.html to be placed in the directory public_h
On Tue, 28 May 2002, Luis Miguel N. Tavora wrote:
> Hi there.
>
> I've started to code in PHP a couple of days ago, so
> I'm really a newbie.
>
> As far as I understood it, for a server process the php
> code, the file must have the extension .php
Not really but it's a good convention.
> B
LMNT> As far as I understood it, for a server process the php
LMNT> code, the file must have the extension .php
You can use any extension for PHP, as long as you tell Apache (or
other web server) to process files of that extension as PHP files.
LMNT> Does that mean that I can't have any php in
"Luis Miguel N. Tavora" wrote:
> But then, the apache server (for example) requires a file
> index.html to be placed in the directory public_html/ ...
The Apache server only requires what you tell it to require.
Edit your httpd.conf file and look for:
DirectoryIndex index.html
...
Howdy crew...
I have a client's ISP that is running php 4.0.6 on WIN IIS but does NOT have a version
of GD installed.
My question to you is, What is the best version of the GD module that works with
4.0.6, and where can I get it?
Trying to download just the GD module on PHP.NET has proven to
Why not just use htmlentities() and striptags() on the user input? I
prefer to just use htmlentities() and that's it. Any code the user tries
to type in is just converted to html codes and ends up being displayed
in the browser exactly as they typed it. None of their code is evaluated
though.
--
> What exactly does the underscore in _("Select your preferred
language:")
> mean?
It doesn't do anything. It's just a naming convention the author chose
to use. Usually when you name a function like that, it's meant to be
"private" or shouldn't be called directly. Other functions will use it,
bu
No, the _() function is the standard gettext() alias. See
http://php.net/gettext
-Rasmus
On Tue, 28 May 2002, John Holmes wrote:
> > What exactly does the underscore in _("Select your preferred
> language:")
> > mean?
>
> It doesn't do anything. It's just a naming convention the author chose
>
Oddly, I get the following error on the page when trying to view it though:
Fatal error: Call to undefined function: _() in
/Library/WebServer/Documents/admin/horde/config/prefs.php on line 5
Here's the exact offending code:
$prefGroups['language'] = array(
'column' => _("Your Information")
Of course this had to come in after I sent my email.
Thanks again Rasmus, you seem to always be there with the answer.
Wes
> No, the _() function is the standard gettext() alias. See
> http://php.net/gettext
>
> -Rasmus
>
> On Tue, 28 May 2002, John Holmes wrote:
>
>>> What exactly does t
Thanks John,
I'm not familiar with the first function, but it sounds like any easy way to
accomplish basic validation. Btw, any ideas why my code snippet didn't work?
I still have some "badWords' to check for, and eregi doesn't seem to work
with textarea.
Tia, Andre
On Tuesday 28 May 2002 06
Hi: all:
With helps from Martin, now I can create images on the fly.
I used code like to create my
images. However, with this option, how can I pass a variable to
generateimage.php? The php scrip is supposed to take a variable: say
ImageID and looks up the MySQL database for all values and the
How about the obvious way?
-Rasmus
On Tue, 28 May 2002, Engineering Software Center wrote:
> Hi: all:
>
> With helps from Martin, now I can create images on the fly.
> I used code like to create my
> images. However, with this option, how can I pass a variable to
> generateimage.php? The p
Greetings everyone,
I'm trying to do some regexp magic and just can't seem to
get it done with PHP.
Basically I want to evaluate a word and if the last character
of the word is an 's', to knock it off, unless there are
two consecutives at the end of the word.
So 'boys' would become 'boy'
and
The way vbulliten does it, is they take a users search query, and find
out which threads match i.e. (2000, 5000, 2310, etc...). This is then
inserted into a database along with a search ID. From here once the
search is completed you are forwarded to a page like search.php?
search_id=7 that way
If you use the database mechanism to lock the table during the
transaction, then the second simultaneous invocation of your PHP program
will wait (a tiny fraction of a second) until the first one is done.
miguel
On Wed, 29 May 2002, r wrote:
> since only my one program was accessing the table
In our application, we need to write a UTF8 strings to the image using True
Type fonts. The php function that we are using is imagettftext. However,
we have the two problems regarding that function:
1. The images that are generated by this function is white fonts on the black
background. B
To change your Image color use ImageFill:
ImageFill($im,$gifwidth,$gifheight,ImageColorAllocate($im,235,235,235));
Then, in your ImageTTFText, you can set the font:
ImageTTFText($im, 11, 0, 20, (540-20),-$black,"../fonts/arial.ttf", "Source:
SEER 12 Program");
I recommend using -$fontc
Hello,
On 05/26/2002 04:05 PM, Georgie Casey wrote:
> Rite, when you see a web form, you know you can simulate the submit by
> filling in the values in the address field, just like a GET method, and it
> usually works the exact same. But how do you do it when one of the fields in
> the form is a
Helllorgh, !!!
I've got a strange problem...
Look at this pseudo-script (news.php) :
--
etc
. and the submit, plus 1 or 2 others...
-
On Tue, 2002-05-28 at 16:56, Dan Harrington wrote:
> Greetings everyone,
>
> I'm trying to do some regexp magic and just can't seem to
> get it done with PHP.
>
> Basically I want to evaluate a word and if the last character
> of the word is an 's', to knock it off, unless there are
> two conse
On Tue, 28 May 2002, Luis Miguel N. Tavora wrote:
> As far as I understood it, for a server process the php
> code, the file must have the extension .php
>
> But then, the apache server (for example) requires a file
> index.html to be placed in the directory public_html/ ...
Wrong on both coun
I hope this makes sense to someone
Im converting a script over to work with 4.1.x +.
Im running php 4.1.2 on FreeBSD/Apache and I have 4.2.0 on w2k/IIS/Apache.
I sent the script to a friend of mine who is running w2k/Apache with 4.2.0.
He told me that the script isn't working for him but it w
code snippets would be good, if possible
-Original Message-
From: Gerard Samuel [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 29, 2002 10:46 AM
To: PHP
Subject: [PHP] PHP new super globals or something else??
I hope this makes sense to someone
Im converting a script over to work
How can I find out the date of the 3rd Tuesday of any given month?
Thanks,
-Ed
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
See the PEAR Date/Calc class.
On Tue, 28 May 2002, Ed Lazor wrote:
> How can I find out the date of the 3rd Tuesday of any given month?
>
> Thanks,
>
> -Ed
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
--
PHP General Mailing
On Tue, 28 May 2002, Gerard Samuel wrote:
> Then the form is submitted to itself to insert into the database. When
> its submitted, the script is looking for 'foo' and 'bar', but
> they are now in the $_POST, and this is where it breaks for the other
> guy, because the script is still looking f
1. set date = 1
2. get day of 1st of month
3. if day != tuesday, set date = 10-day_num (assuming Sun = 0, Mon = 1,
etc)
4. add 14 to date
5. now you have your date
There's most likely a better way of doing it though
-Original Message-
From: Ed Lazor [mailto:[EMAIL PROTECTED]]
Sent: Wedn
Its a fairly long script but this is a basic rundown of the mechanics.
some_page.php
-
';
echo '';
echo '';
echo '';
}
?>
Now as it stands, initially it would work fine, but when the form is
submitted, it would break, because 'foo' and 'bar' are in $_POST
or, try this:
';
}
elseif(file_exists('{$c}.jpg'))
{
echo '';
}
else
{
echo '';
}
?>
Justin French
Creative Director
http://Indent.com.au
on 29/05/02 7:56 PM, r ([EMAIL PROTECTED]) wrote:
> Hi PHP ppl,
>
> I have a direct
On Tue, 2002-05-28 at 18:05, Gerard Samuel wrote:
> Its a fairly long script but this is a basic rundown of the mechanics.
>
> some_page.php
> -
> /* user is sent here from another page, grab foo and bar from the url */
> $foo = $_GET['foo'];
> $bar = $_GET['bar'];
>
Actually, no. $foo and $bar are controls to let the script know which
threads (its a forum script) to follow.
This merely an example.
Im not really looking for a fix for the script, thats a no brainer, but
an explanation as to why the script is not behaving as it is supposed to be
with regist
well this sql :
select * from database where this='$foo' and that='$bar';
should become :
select * from database where this='' and that='';
after you substitute the variables in.
This looks like a valid sql to me, unless the database is set up to
_dis_allow zero length strings...
Hello,
I'm just playing around with the imageTTftext() function but it doesn't
seem to be working. I can output an image, but when I use the text
function, nothing is displayed, not even the image.
This is running on a RHL 7.2 system with the following installed:
php-4.0.6-7
gd-1.8.4-4
freetyp
Ill see what else I find. Thanks...
Martin Towell wrote:
>well this sql :
> select * from database where this='$foo' and that='$bar';
>should become :
> select * from database where this='' and that='';
>after you substitute the variables in.
>
>This looks like a valid sql to me,
Could anybody explain to me (or even give me a link to a place explaining)
the creation of "DSN-less" connections? I've extensivly searched Google with
this, but I couldn't find anything that was of any help to me. I know how to
do this in ASP, though...
--
PHP General Mailing List (http://www
Hello everyone,
I have a script to check a user submitted string. It may be multiple
words. If a word is found to be 3 characters or less, the script should
retain the case of the string IF all the characters are uppercase.
Otherwise, the script will make the first character of each word
uppercas
Hi All,
I am designing a News board and wish to convert any text beginning with
'http://' into a hyperlink, when displayed on the page.
I have converted all the HTML tags (htmlspecialchars) before saving the
data.
I can do the initial bit fine (adding the ) before the start of
the link, but I am
Hello,
I don't know exactly why I'm getting this output:
Fatal error: Call to undefined function: pg_query() in
/var/www/html/steve/frontdoor.php on line 42
I can successfully connect to my db using:
$link = pg_connect ("host=localhost dbname=$dbname user=$user");
And I even get the proper Da
Hello,
I'm probably not using the right terminology for what I want to know, but I'll explain
it as best I
can.
I am in the planning stage of building an online course room. Each week I need to
upload pages for
that weeks lesson and assignments. What I want to know is if there is a way for me
On Wednesday 29 May 2002 11:52, Dr. Indera wrote:
> I am in the planning stage of building an online course room. Each week I
> need to upload pages for that weeks lesson and assignments. What I want to
> know is if there is a way for me to have all 8 weeks of the course pages
> created and uploa
On Wednesday 29 May 2002 11:37, Steve G wrote:
> Fatal error: Call to undefined function: pg_query() in
> /var/www/html/steve/frontdoor.php on line 42
> but for some reason pg_query gives me an undefined function. What gives??
> Is this function not valid? The manual says it is.. I think my s
I have a member variable of a class that I am designing called $m_menu. I am trying
to add items to it using the contents of $index as the index for the 'slot' in the
array, but I get a parse error when I do so.
array_push($this->m_menu, $index =>array("title"=>$title, "content"=>"",
"color"
Hello,
I'd to know how difficult it is to achieve the following:
Create login page, when the submit button is clicked, the user info is checked against
a database as
to whether is login info is valid. if it is valid, a page is displayed that lists all
of the classes
that the user has registe
I think that is right Jay,
you can use mktime() to change the date into unix time and then create the if
statement
if ((mktime([current])) == (mktime([date of assignment])) {
echo "link to assignment"
}
something along those lines..
you can easily check it by setting the system clock f
Hello,
I'd to know how difficult it is to achieve the following:
Create login page, when the submit button is clicked, the user info is checked against
a database as
to whether is login info is valid. if it is valid, a page is displayed that lists all
of the classes
that the user has registe
That's all possible using an SQL database (www.mysql.com)
just think about the databnse first before you actually make it, i ran into a
lot of problems because i just kept adding tables whenever i needed them
a good hint is to write scemes of your script and what ylu want to achieve on
paper bef
On Wednesday 29 May 2002 11:06, Randy Janinda wrote:
> Hello everyone,
>
> I have a script to check a user submitted string. It may be multiple
> words. If a word is found to be 3 characters or less, the script should
> retain the case of the string IF all the characters are uppercase.
> Otherwise
why not just do this?
$this->m_menu[$index] = array("title"=>$title, "content"=>"",
"color"=>$color);
-Original Message-
From: Joe Pemberton [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 29, 2002 2:23 PM
To: php list
Subject: [PHP] dynamic indexes in arrays
I have a member variable
actually that should be
for ($n = 1; $n <= $number_of_assignments; $n++) {
if (mktime($current) >= mktime($assignment[$n]) {
echo "assignment[$n]\n";
}
}
Jule
On Wednesday 29 May 2002 00:31, Jule wrote:
> I think that is right Jay,
> you can use mktime() to cha
I have a string which is a date - eg "01-JUL-02"
I want to convert the month bit to it's corresponding number, so the above
would become "01-07-02"
Can this easily be done using a regex?
Otherwise I was thinking of this:
$mon = array("JAN"=>"01", "FEB"=>"02", "MAR"=>"03", etc...);
list($x, $y, $
I really should be more clear on my scripts
I'm sorry
$assignment[1][date] = date(); // date in mktime format see www.php.net
$assignment[2][date] = date();
$assignment[3][date] = date();
$assignment[4][date] = date();
$assignment[5][date] = date();
$assignment[1][assignment] = "pg. 1-5";
$
I came up with a solution that I'd like to share. Could someone confirm
whether it's the best approach?
Thanks,
-Ed
- source code
# ex.: GetDay ("Third", "Saturday", 5, 2002);
function GetDay($Week, $Day, $Month, $Year)
{
$MonthStartDay = date("w", mktime(0,
If you want to make it a few line shorter, change
if ($MonthStartDay < $Day)
{
$C = $Day - $MonthStartDay;
}
else if ($MonthStartDay > $Day)
{
$C = 7 - $MonthStartDay + $Day;
}
to
$C = ($MonthStartD
I'm trying to match file names associated with a 3DS file (a 3DS file is a
common 3D file format). The file is binary by nature but as you can clearly
see in the dump below the filenames themselves are stored as plain text.
So I should be able to do a simple eregi() on the file and discover if th
Hi,
Is there any substitute for header function..
Because of this I am getting error saying.."php.exe has generated some
errors and will be closed by windows".
if ($row->user_type=='A')
{
mysql_close($connection);
header("Location:admin.php");
exit;
}
Thanks in advance
On Wednesday 29 May 2002 13:49, Balaji Ankem wrote:
First of all, please start a new post when you have a new question. Do not
just reply to an existing post. It's bad manners. And quoting the irrelevant
existing post is even worse manners.
> Hi,
> Is there any substitute for header function
hi jule,
thank you for the script and don't worry about the # of posts. i admire your
dedication.
indera
Jule wrote:
> I really should be more clear on my scripts
> I'm sorry
>
> $assignment[1][date] = date(); // date in mktime format see www.php.net
> $assignment[2][date] = date();
> $
Hi Jason and friends,
I am very sorry for that. Pls. Pardon me.
Yaa I am sure header is causing that trouble and that to it is
happening on Windows only.
In linux it is not a problem.
If I remove the 3 lines code present in if loop and if I keep any echo
statement it is working fine.
And If I
try specifying the full url. see how that goes
-Original Message-
From: Balaji Ankem [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 29, 2002 4:06 PM
To: [EMAIL PROTECTED]
Subject: RE: [PHP] Is there any substitute for header function?
Hi Jason and friends,
I am very sorry for that. Pl
Hi Martin,
I have tried with full URL. But no use.
Again displayed the error alert.
Thanks and Regards
Balaji
-Original Message-
From: Martin Towell [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 29, 2002 11:37 AM
To: 'Balaji Ankem'; [EMAIL PROTECTED]
Subject: RE: [PHP] Is there any
On Wednesday 29 May 2002 14:14, Balaji Ankem wrote:
> Hi Martin,
> I have tried with full URL. But no use.
> Again displayed the error alert.
Try searching on http://bugs.php.net to see whether there are any known
problems with header() under Windows.
Try re-installing php.
--
Jason Wong ->
101 - 188 of 188 matches
Mail list logo