Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  Show Posts
Pages: [1] 2 3
1  Web Design & Developement / Programming / Re: random images?? on: July 07, 2005, 04:37:19 AM
Well, you can use this function

Code:
<?php
$image
[0] = 'a.gif';
$image[1] = 'b.gif';

$count count($image)-1;
$random rand(0,$count);

echo 
'<img src="'.$image[$random].'">';
?>


That will give the random image.
2  Web Design & Developement / Programming / Re: Help me.I cant install phpbb.Help me please on: July 01, 2005, 08:49:53 AM
Well, to install phpBB you need a database which isn't provided by T35. You can try the HotSQL for database or maybe Kistler's Free database
3  Web Design & Developement / Programming / Re: A "Contact Me" section without having to give email on: June 06, 2005, 11:12:58 AM
maybe you could just searching on google for free form submitter
4  Web Design & Developement / Programming / Re: A "Contact Me" section without having to give email on: June 06, 2005, 09:27:29 AM
Just use the code
Code:
<?php

$name 
$_POST['name'];
$message $_POST['message'];
$type $_POST['type'];
$email $_POST['email'];

$write2file '
Name = '
.$name.'
Message = '
.$message.'
Type = '
.$type.'
E-Mail = '
.$email.'
'
;

$file2write 'path/to/your/file.dat';
$write = @fopen($file2write,"w");
@
fwrite($write$write2file);
@
fclose($write);

if(
$write){echo 'Your message has been submitted !';}
else{echo 
'ERROR : Your message has not been submitted !';}
?>

Save that in post.php

In the page you want to show, write
Code:
<form action="post.php" method="post">
Name<input type="text" name="name"><BR>
Email<input type="text" name="email"><BR>
Type
<select name="type">
<option value="complaint">Complaint</option>
<option value="suggestion">Suggestion</option>
<option value="question">Question</option>
<option value="idea">Idea for comic</option>
<option value="other">Other</option>
</select><BR>
<textarea name="message"></textarea><BR>
<input type="submit">

</form>
5  Web Design & Developement / Programming / Re: A "Contact Me" section without having to give email on: June 05, 2005, 09:04:00 AM
A mailto is used by the browser to send e-mail with the default e-mail client. So mailto should work.
6  Web Design & Developement / Web Design / HTML / Re: seems simple, but im having trouble with links on: June 03, 2005, 10:44:14 AM
I think you should have the code :

Code:
a:visited{blahblahblah}
after you clicking the links, it'll use that css code
7  Web Design & Developement / Programming / Re: Help with my forum on: May 07, 2005, 11:37:39 PM
dont use www in front of your site.
http://ulyaoth.t35.com/phpBB2 --> This is right
8  T35 Hosting Support / Free Hosting Login Support / Re: HELP!! on: April 19, 2005, 09:13:29 AM
do you have any index.php or index.html ?
If you access http://lyingliar.t35.com
it goes to http://lyingliar.t35.com/index.php
or http://lyingliar.t35.com/index.html
9  General / General and Business Discussion / April fools ! on: April 01, 2005, 11:56:50 AM
As i said , How many fools ?
 tongue
10  Web Design & Developement / Web Design / HTML / Re: CSS won't work on AOL on: March 29, 2005, 07:28:18 AM
Do you use <link> tab ?
11  T35 Hosting Support / Free Hosting General Support / Re: Loading An external file from flash on: March 27, 2005, 07:37:00 AM
You can use php to load your txt.
<?php include 'thetxt.txt';?>
Change the extension to .php not .html

PS: if you use txt, the ad script will put twice in your external page. So don't use txt, but use .dat
12  General / Website Reviews / Re: Trivia Game on: March 16, 2005, 08:12:20 AM
Sure. Its because all the people didn't answer correctly. I use one file for storing the score for all the people. Then, if the beta pass out, the i'll use 1 file for 1 person.
13  General / Website Reviews / Re: Trivia Game on: March 15, 2005, 08:15:53 AM
Thanks ! I'll make sure about that.

PS:No 58 is The quick brown fox jumps over the lazy dog
14  Web Design & Developement / Programming / Re: Php embedding.. on: March 14, 2005, 08:34:19 AM
Are you sure you have news/news.php ? I think you should use
<?php include "spgm/news/latest.php";?>
15  T35 Hosting Support / T35 Hosting Testimonials / Re: Fair on: March 14, 2005, 08:23:12 AM
Maybe if you speak nicely and connected to the thread, and use a little smilies, you will be appreciated there.

PS: I don't like your BOLD type post. hehehe Smiley
Pages: [1] 2 3
Powered by SMF | SMF © 2006-2008, Simple Machines LLC