h the prob last week... running redhat with mysql PHP combo.
all worked after i restarted the mysql service from command line.
Joel Colombo
"Jennifer Fountain" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED]
Here is the code:
WhenI try to connect, I
Here is the whole setup simple step-by-step even for PERL if you want !
http://www.ricocheting.com/server/apache.html
Joel
"Daniel Perry" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Dear Sir
>
> I require a complete installation package if possible. I am operating
> XP Pro, b
Joel Colombo
"L0vch1y" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> -> php-general.
>
> I used such code:
>
> $exp = 60*60*24*10; # for ten days.
> session_set_cookie_params($exp);
>
> But it works wrong - cookies were removed
) && is_file($dest_file) && etc etc etc) {
unlink($dest_file)
}
-- or -- do charles method and be sure if you want to delete it is gets
deleted.
if (unlink($dest_file)) {
// Actions when deleted
}else {
// Actions if file does not exist, or fails, or is errored, or etc etc
et
Try:
somewhere global define :
$encryptiontechnique = 'ENCRYPT ALGORITHM';
function encryptPassword($password, $salt='') {
global $encryptiontechnique; if ($salt === '') { $salt =
$encryptiontechnique; }
// CODE..
}
Joel Colombo
"Liam
duplicate POST from php.db
"Shaun" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hi,
>
> i would like to list all of the tables and field names in my database
>
> e.g.
>
> table 1
> field 1
> field 2
> field 3
> table 2
> field 1
> field 2
> field 3
> table 3
> field
oh and i just noticed u want to select the 'type_id' twice... i assume from
each table SO u need to...
SELECT table1.type_id AS t1_type_id, table2.type_id AS t2_type_id FROM t1,
t2
use the 'AS' function it helps with a lot of headache later... trying to
figure out y u get the wrong index !
Joel
then 1 table in FROM. u must always
specify where u are selecting from as well unless u SELECT * FROM t1,
t2... that will work or SELECT t1.*, t2.field_a, t2.field_c... works also.
Joel Colombo
"Alawi" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> SELECT
might want to post this to the developers group.
php.dev
Joel
"Joe Wong" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hi, I am writing a PHP extension on Win32. I put a ZEND_SET_SYMBOL in the
> php_init_xxx_globals() and it failed to compile under Win32 using VC++
5.0,
> the err
function make_alphanum($string_val) {
return eregi_replace("[^[:alnum:]]", "", $string_val);
}
strips everything except ALPHA and NUM Chars
Joel
"Kenn Murrah" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Greetings.
>
> I'm out of my league here, not knowing enough about reg
This is a PHP group please post JS questions to a JS group unless u have PHP
code in inside requiring help !!!
IE considers it non-active when style.display = 'none'
you can not reference it via the 'javascipt' controls.
it must be made visible to work in IE... i think u should look at another
so
jim
there is no need for the second parameter in Date() for PHP, unless u want
something other then current time.
Date ('m-d-y') is the same as Date ('m-d-y', Time())
Joel
"James Holden" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> In mysql use
>
> DATE_FORMAT(FROM_UNIXTIME(tim
PHP
look at the Date( ) Function at php.net
http://us2.php.net/manual/en/function.date.php
Joel
"Lord Loh." <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> How do I convert the unix time stamp (the one I get by the time()) to a
> readable English language time
>
> I am get
not mysql_fetch_array unless u need those int indexes.
mysql_fetch_assoc is the same thing but does not index the integer value,
just the string field name.
Joel
"Leif K-Brooks" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Use mysql_fetch_array instead of mysql_fetch_row.
>
> CF
query result like MYSQL ?
$x = mysql_result($result, 0, 'field');
another way for mysql_result
$r = mysql_fetch_assoc($result);
$value = $r['fieldname'];
-- OR --
just an array ?
$result['fieldname'] = 5;
$x = 'fieldname';
echo ($result[$x]);
did that help ?
i think i
stick a.
set_time_limit(XXX);
at the top of the page
where XXX is the maximum time u would like it to run. ex... 180 for say 3
minutes.
Joel Colombo
"Mathieu Dumoulin" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Ok, i got this script i run on my
make sure u run a session_start(); before anything on the page
u cant access any session vars without it.
Joel
"Terry Lau" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hello,
> I want to set a cookie when I enter a text into the text field, and
it
> shows the text I sub
u might have something on the ownership issue.
i ran into the same thing... play with php's "chown" command.
look it up php.net may help, i was having a similar issue a few months back.
Joel
"John Taylor-Johnston" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Stephen,
>
> It see
same thing
$query = "SELECT * FROM polls ORDER BY pollID DESC LIMIT 1";
dont need both params for LIMIT. just the num of rows u want back works too.
Joel
"Hans Prins" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> That's weird.. that was the
I am lost on this
pdf_open_image();
i am creating an image...
can i do this
$image = ImageCreateTrueColor(100, 100);
$red = ImageColorAllocate ($image, 255, 0, 0);
$blue = ImageColorAllocate ($image, 0, 0, 255);
ImageFilledRectangle($image, 0, 0, 100, 100, $red);
ImageFilledRec
This is a mysql question, cause i can do it with a natsort in php.
question is can u do it directly in the MYSQL SELECT ?
I am wondering if the SELECT statement can have a natural order by.
Table has 5 rows.
field name "number"
values :
10
2
15
30
150
a regular order by "numb
i use seconds in place of time alot.
using the PHP time() function and Date() functions u can do a lot.
instead of a time / date TIMESTAMP field type i use an INT type
i then call the $the_time = Time(); and insert that.
then u can manipulate the hell outta that INT value from the DB with php's
D
actually
if (intval($guess) == $number {
would be more acuate then the trim ( )
you would eliminate all alpha characters and floating points
saying it has to be a whole integer
Joel
"Ralph Friedman" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> In ar
did u try $HTTP_REFERER ?
that might do it... havent tested with an include though.
Joel
"Theodore Brinkman" <[EMAIL PROTECTED]> wrote in
message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> I've got an include file that provides the basic framework for every page
on
> my site, and at the bo
http://www.php.net/manual/en/ref.filesystem.php
all the file system functions
Joel Colombo
"Jeroen Timmers" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Hello,
>
> can i read a directory for files and other direct
"Sundogcurt" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Hi guys, like every other problem I have this one is SURE to be
> painfully simple to fix and make me look g0ofy again.
>
> I have an edit user form with checkboxes like the one below :
>
> >
>
> Whe
go download.com
get EditPlus
the trial runs up and still works without limit.
very cool program
"Javier" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Is there any free app. for php coding? I tried komodo but I can't get it
> to work in debug mode. Also
27 matches
Mail list logo