Re: [PHP] Comparing of string

2006-01-04 Thread Raz
I would guess that the '' in $_GET['formCheck'] will cause problems...

Trying your code without the ampersand as in:
$_GET['formCheck'] =
'ZL0X~TT4PQ%0~R0OXPRUHY7E!4~W337J71V4WDDI6$GS9480XP0TNP2I$1YX75S'

It works just fine.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] asianwhiteskin beauty product

2005-12-13 Thread Raz
Can I have some breast enlarger please?

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] echo

2005-11-19 Thread Raz
Try nbsp;

On 19/11/05, Alex Alfonso [EMAIL PROTECTED] wrote:
 Can you please tell me how to make a space in php. I know that br is a
 new line and p is a new paragraph. But I just can't figure out what an
 earth a space is. Eg
 ?php
 echo Television viewers who turned to;
 echo I need a space here;
 echo $_POST['word1'];
 ?
 Can you please tell me what a space is.

 Alex Alfonso
 [EMAIL PROTECTED]



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] echo

2005-11-19 Thread Raz
Or  

On 19/11/05, Raz [EMAIL PROTECTED] wrote:
 Try nbsp;

 On 19/11/05, Alex Alfonso [EMAIL PROTECTED] wrote:
  Can you please tell me how to make a space in php. I know that br is a
  new line and p is a new paragraph. But I just can't figure out what an
  earth a space is. Eg
  ?php
  echo Television viewers who turned to;
  echo I need a space here;
  echo $_POST['word1'];
  ?
  Can you please tell me what a space is.
 
  Alex Alfonso
  [EMAIL PROTECTED]
 
 


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] echo

2005-11-19 Thread Raz
Jeez!  You'd hate to work on a project with me then! All those cycles
I'd waste! Har har ;)

On 19/11/05, Robert Cummings [EMAIL PROTECTED] wrote:
 On Sat, 2005-11-19 at 03:35, Raz wrote:
  Or  

 Oh no, don't interpolate your space... that's just plain wasteful of
 cycles.

 *lol*

 Rob.
 --
 ..
 | InterJinn Application Framework - http://www.interjinn.com |
 ::
 | An application and templating framework for PHP. Boasting  |
 | a powerful, scalable system for accessing system services  |
 | such as forms, properties, sessions, and caches. InterJinn |
 | also provides an extremely flexible architecture for   |
 | creating re-usable components quickly and easily.  |
 `'



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Newbie to PHP5

2005-11-15 Thread Raz
 -. I know that all is the manual, but before that anyone nows, a website
 or a simple tutorial or explained samples, in order that the transition from
 PHP4 and PHP5 were easiest as possible.

http://www.php.net/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Newbie to PHP5

2005-11-15 Thread Raz
http://uk2.php.net/manual/en/migration5.php

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Designing a complicated multipage form with sessions

2005-10-21 Thread Raz
One definite thing to look out for is multiple submission of forms...

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Installation problem with PHP%

2005-09-25 Thread Raz
[snip]
 http://newbieclub.com/?hands_on
[/snip]

Great site that, never need that php list ever again!

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] stupid (HTML) question

2005-08-31 Thread Raz
Will

As suggested by Monsieur Jay, a bit of CSS...


style type=text/css
.centerTable {
text-align: center;
}
.centerTable table {
position: absolute;
top: 50%;
left: 50%;
width: tableWidth;
height: tableHeight;
margin-left: -(tableWidth/2)px;
margin-top: -(tableHeight/2)px;
}


/style

.

div class=centerTable
table border=1
tr
td1/td
td2/td
/tr
tr
td3/td
td4/td
/tr
/table
/div

HTH

Raz

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] changes in php.ini

2005-08-26 Thread Raz
Have you tested to make sure that php is actually working yet?

Raz

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Help Needed

2005-08-26 Thread Raz
David

but it does not seem to be working.

Might be helpful for folks if you describe the nature of the fault
i.e. what you get back when you run this - at this stage there are a
multitude of possibilities...

raz

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Help Needed

2005-08-26 Thread Raz
Leading back in the code, that would suggest that $nrows is not
greater than zero - could be a problem with $nrows then, and anything
associated with that, i.e. $stmt, whether there is content in the db
where REC_VALUE = 'uczmdsk1' etc. etc.

Work back down the chain and see if you can find anomalies...

raz

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Help Needed

2005-08-26 Thread Raz
David,

 If I change the code to ($nrows = 1) then it displays 'Data found',
 however if I have a REC_VALUE = 'does not exist' it still displays 'Data
 found'
 
That would suggest that something is being returned - do you have
command line access or some other way to look at what is being
returned by the sql statement?

Peel back the layers...

raz

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Themes, pictures directory

2005-08-25 Thread Raz
Martin

Using Apache? Check out
http://httpd.apache.org/docs/1.3/misc/rewriteguide.html - all about
rewriting URLs...good luck!

HTH

Raz

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Looking for CMS advice

2005-08-23 Thread Raz
 opencms.org or something like that.

It is http://www.opensourcecms.com/

Raz

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] how to clear cache content in IE using php

2005-08-18 Thread Raz
?php
$msg Dear Internal Explorer user: Please clear your cache. Thanks;
echo $msg  //repeat this operation ad nauseum
?

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] how to clear cache content in IE using php

2005-08-18 Thread Raz
Whilst I'm in 'comedy' mode...

 See, isn't bottom-posting cleaner? ;)

I'm sure bottom-posting is a banned practice in some parts of the
world you know...

Raz

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] How Can I delete an Item of one array

2005-08-17 Thread Raz
 I want to delete an element behind of array?, what function What Can I use?

Do you mean remove the last member of an array? If so check out
array_pop() at www.php.net

raz

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] sytax errors

2005-07-19 Thread Raz
 Its giving the line number. But actually i want to know the correct syntax 
 for concatenation. I think all there is some mistake in all the three 
 concatination statements.
 
No - there is no problem with any of the statements per se, but there
may be when executed with $adduser, $addpass etc. Why not take the
advice of Mark Rees and echo the $sqlstmt etc and show us the output?

Raz

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] show a field in php file

2005-07-19 Thread Raz
Hey George...

On 19/07/05, Jay Blanchard [EMAIL PROTECTED] wrote:

 It is not that you cannot ask questions, it is that your questions show
 a basic lack of research. The answers to the questions you have asked
 are easily gotten from the manual, tutorials, and good books on PHP
 development. 

For instance, take a look at:
http://www.php.net/manual/en/ref.mysql.php - this is the first page in
the reference manual about mysql. 'bout a third down the page
is...'Example 1. MySQL extension overview example' copy, paste, amend
as required and run. Doesn't work? PHP manual - google -
bookand...

...if then you don't understand, come back and ask - least it shows an
ounce of initiative which is what most on this list would like to see
;)

Raz

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Post URL ?

2005-07-18 Thread Raz
Joey,

Take a look at how to use sessions on the php web site...

Raz

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Re: Post URL ?

2005-07-18 Thread Raz
 You can put the value in a hidden form field and submit it with
 JavaScript, but it's still not truly hidden, as it is still sent in a
 cleartext HTTP request.

Not to mention being visible upon viewing the page source...

Raz

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Trimming Text

2005-07-15 Thread Raz
Take a look at http://uk.php.net/manual/en/ref.pcre.php - plenty of
useful functions for this sort of thing...

raz

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Trimming Text

2005-07-15 Thread Raz
Are you trying to turn, for example

p Some text here. /p

into

pSome text here./p

?

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Trimming Text

2005-07-15 Thread Raz
If you really want to do it, you're gonna have to get your hands
dirty, I'm afraid...;)

...off with the gloves...!

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] cannot connect to MySQL server and not sure why

2005-07-14 Thread Raz
Bruce,

looks like 
mysql_pconnect ($mysql_host, $mysql_user, $mysql_password);

wants to read

$success =  mysql_pconnect ($mysql_host, $mysql_user, $mysql_password);

Raz

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Blocking login on the same username from diffrent computers

2005-07-13 Thread Raz
Yaron,

You could store a 'logged in/out' status flag in a db...then reference
it upon login, and use a chron job to tidy up any loose sessions every
so often.

raz

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php