Search found 750 matches

by Lixas
Tue Feb 26, 2008 10:37 am
Forum: XML, HTML & CSS
Topic: javascript php html styling and good practice.
Replies: 14
Views: 12778

It's not easy to use, but it can add cool features to your site. If you are not good at ajax, do not use it, because it may became difficult for user to use your site
by Lixas
Tue Feb 19, 2008 1:02 pm
Forum: PHP
Topic: PHP Zip => UNIX compression?
Replies: 2
Views: 4681

hi. As i say, google always helps. Try this: http://xrl.us/bge6a
by Lixas
Sun Feb 10, 2008 11:41 am
Forum: PHP
Topic: how to configure php with oracle
Replies: 5
Views: 2922

for windows i think that there should be dll library, which you have to activate in php.ini configuration file
by Lixas
Fri Feb 01, 2008 3:36 pm
Forum: Webmaster related discussion
Topic: JavaScript redirection can be done in 3 ways
Replies: 12
Views: 4104

In what cases is PHP not able to do that? [PHP]function redirect($location)// Redirect browser using the header function if it fails, use javascript { if(!headers_sent()) { header("Location: " . $location); exit; } else { echo " <html> <head> <title>Redirecting...</title> <meta http-...
by Lixas
Tue Jan 29, 2008 3:25 pm
Forum: Webmaster related discussion
Topic: JavaScript redirection can be done in 3 ways
Replies: 12
Views: 4104

i guess it's the best way to redirect. but sometimes php is just not able to do that. so in this case JS will do the job
by Lixas
Tue Jan 29, 2008 3:18 pm
Forum: XML, HTML & CSS
Topic: flash
Replies: 8
Views: 3072

There are two ways:
  1. Add the following parameter to the OBJECT tag:

    Code: Select all

    <param name="wmode" value="transparent">
  2. Add the following parameter to the EMBED tag:

    Code: Select all

    wmode="transparent"
by Lixas
Tue Jan 29, 2008 3:14 pm
Forum: PHP
Topic: connecting to an external FTP
Replies: 1
Views: 1744

if your web host support, you can try http://www.dreamincode.net/forums/showtopic19945.htm
by Lixas
Wed Jan 09, 2008 6:54 pm
Forum: PHP
Topic: Need some php help...
Replies: 7
Views: 3741

random:
[php]rand(0, 100); //it will generate random number from 0 to 100[/php]And about forms:use database so save data how much times item is selected and before creating that form, check it in database
by Lixas
Sat Dec 29, 2007 6:18 am
Forum: Webmaster related discussion
Topic: Flash background ?
Replies: 7
Views: 2601

Gebbo wrote:hmmm.. yeah i think only php can have a flash background..
have you read what i wrote in previous post? Or you want to get me angry on you by spamming in this forum ?
by Lixas
Sat Dec 29, 2007 6:15 am
Forum: XML, HTML & CSS
Topic: How to show image like ads
Replies: 3
Views: 2360

just insert image of your ad to the page using html code:
[HTML]<a href="www.yourdomain.com" target="_blank"><img src="pat/to/image.jpg" border="0"></a>[/HTML]