Welcome to Anything Forums! We are a general discussion forum that believes in freedom of expression and aim to provide a low moderation (within reasonable means) environment to discuss any topic. If you want to join, simply click HERE to be taken to our account management system where you can make an account. If you had an account at iceteks.com, anythingforums.com, uovalor.com or uogateway.com in the past it has been transfered over and you can simply do a password reset.
Computer builds, hardware and software discussion or troubleshooting, including peripherals. Essentially a general place to talk about desktop computers.
no no now what I meant was
as for the background sound please use the embed code but INCLUDE the player controls AND SET AUTOSTART TO FALSE so the visiter to your site can play the sound or not play the sound.
Edited for accuracy.
Archived topic from Iceteks, old topic ID:3325, old post ID:27500
no no now what I meant was
as for the background sound please use the embed code but INCLUDE the player controls AND SET AUTOSTART TO FALSE so the visiter to your site can play the sound or not play the sound.
<p><embed src="BridgeOverTheRiverKwai.mid"
align="center" border="1" hspace="1" width="480"
height="45" autostart="false" loop="false">
<font color="#FFFF00" size="2" face="arial">Bridge Over
The River Kwai Theme Colonel Boogie </font></p>
[code]
thats the code i use.
:roflmao2: :biglaugh: :stir the pot:
[color=#888888][size=85]Archived topic from Iceteks, old topic ID:3325, old post ID:27503[/size][/color]
Mikwiththestick wrote: is there really sounds on my site? Welll whatever... I need to know how to make a login feature (example: Username _____________ Password _____________)
The DHTML wouldn't be secure though would it? Presumably you are still sending your private content to the browser your script is just not displaying it. Anyone familiar with html / javascript would just be able to look at your page source and see your private content. Even if the javascript only loads the content for authorised users the link to that content would need to be in the javascript code and once found anyone could download the link directly as it would need to be accessible to the internet.
I suppose with text content there are some options to encrypt it but it'll be fairly weak and you'll need to supply a decryption function so that your authorised users can see the content. I doubt it would be too difficult to to extract that function and then for anyone to use it.
Archived topic from Iceteks, old topic ID:3325, old post ID:27519
hmmm... And how would i go about making one of these?
you now what i will attach my index.html and you can see what im trying to do if you could could you just code one into it for me? lol. i'll put down shoubox coded by <who ever coded it name>
I'd put it seperately, and just put an iframe on your page to link to it, you'll want to edit the php code to some extent though, such as making it authenticate with the logged in user.
Archived topic from Iceteks, old topic ID:3325, old post ID:27569
Honk if you love Jesus, text if you want to meet Him!
ok i uploaded my site so if should work now just to show you guys what im talking about. (I know the look looks like ice teks but read the news before doing anything also the contact page does not work)
Archived topic from Iceteks, old topic ID:3325, old post ID:27586
here is my html for the login
<form method="POST" action="--WEBBOT-SELF--">
<!--webbot bot="SaveResults"
U-File="_private/form_results.txt" S-Format="TEXT/CSV"
S-Label-Fields="TRUE" -->
<p>Username: <!--webbot bot="Validation" S-Data-Type="String"
S-Allow-Other-Chars="login" --><input type="text" name="T1" size="21"></p>
<p>Password: <!--webbot bot="Validation"
S-Data-Type="String" S-Allow-Other-Chars="password" --><input type="password" name="T2" size="21"></p>
<p><input type="submit" value="Login" name="B1"> <a href="signup.htm">New
User?</a></p>
</form>
[code]
[code] and the html for the sign up page.
<form method="POST" action="--WEBBOT-SELF--">
<!--webbot bot="SaveResults" U-File="_private/form_results.txt"
S-Format="TEXT/CSV" S-Label-Fields="TRUE" -->
<p>Username: <input type="text" name="T1" size="20"></p>
<p>Password: <input type="text" name="T2" size="20"></p>
<p>E-mail: <input type="text" name="T3" size="23"></p>
<p>Male <input type="radio" value="V1" checked name="R1"> Female <input type="radio" name="R1" value="V2"></p>
<p>Country: <select size="1" name="D1">
<option>Canada</option>
<option>USA</option>
<option>Other</option>
</select>(so we know where our users are from)</p>
<p><textarea rows="4" name="S1" cols="47">This is the agreement that you must agree to in order to sign up for endofinternet.net.
1. You will not post porn or warez .
2. You as a user will respect the other users rights as a human and member of this site.
3. just because your rating on one of your photos or programs gets a low rating it does not mean everyone hates you if you are fealing that they rated it low because they hate you please contact us.
4. You must also respet the rules of the forum you will get 3 warnings then your out.
5. Have Fun.</textarea></p>
<p align="center"><input type="submit" value="Submit" name="B1"></p>
</form>
[code]
What am i doing wrong?
[color=#888888][size=85]Archived topic from Iceteks, old topic ID:3325, old post ID:27880[/size][/color]
What's this --WEBBOT-SELF-- thing? Since you would need to put a php script there to process the login, and show the correct page if loging matches with an account in the database, or fixed varialbe if there's no accounts, but just a single login, like an admin panel
Archived topic from Iceteks, old topic ID:3325, old post ID:27886
Honk if you love Jesus, text if you want to meet Him!