electriic ink
Members-
Content Count
1,319 -
Joined
-
Last visited
Everything posted by electriic ink
-
Gfxtrap.com V2 Updates
electriic ink replied to Saint_Michael's topic in Graphics, Design & Animation
On problem tho On line 257, you have the following code: <div><!-- Begin Top Sites -->[color= red]LINE 257 :: <a href="gfxtrap.com/topsites">[/color]<img src="http://img467.imageshack.us/img467/6619/banner2np.gif" alt="Image Hosted by ImageShack.us" /></a><br /><br /><a href="gfxtrap.com/topsite/ style="font-size: 8.5pt; color: #FFFFFF; text-decoration: none">Rankings</a></span><a href="gfxtrap.com/topsite/index.php?a=join style="font-size: 8.5pt; color: #FFFFFF; text-decoration: none">Join</a></span></div>The link doesn't work and the code should be like this: <div><!-- Begin Top Sites --><a href="[color=red]http://[/color]gfxtrap.com/topsites"><img src="http://img467.imageshack.us/img467/6619/banner2np.gif" alt="Image Hosted by ImageShack.us" /></a><br /><br /><a href="gfxtrap.com/topsite/ style="font-size: 8.5pt; color: #FFFFFF; text-decoration: none">Rankings</a></span><a href="gfxtrap.com/topsite/index.php?a=join style="font-size: 8.5pt; color: #FFFFFF; text-decoration: none">Join</a></span></div> -
Try: if ($echo_text['post_subject'] > $max_length) { $titleattribute = ' title=\"' . $echo_text['post_subject'] . '\"'; }
-
Evidence For God. The ?real? evidence for a living God
electriic ink replied to wild20's topic in General Discussion
You think that, eh? I guess you'd love to work right through Christmas this year, not receiving any gifts or enjoying the happiness it brings. Christmas, believe it or not, is around because Jesus was born. Religion has bought much happiness to this world through the form of celebrations. Sure, religion is a cause of wars but leadership, money and greed are all other causes. The latter (leadership, money and greed) are the ones which all religions are against. Also, bear in mind, that the Muslim terrorist organisations which use jihad as an excuse for blowing up western cities, are misinterpreting it. It's their fault not the religion's. Your view of "religion = death to millions" is ignorant. -
Try adding *.trap17.com to your trusted sites list....
-
Okay, this is my first Christmas sig. It's not exactly great but here it is anyway: Rate/comment/criticise
-
The actual function in javascript itself is confirm(). <script type="text/javascript"> <!-- function queryAction() { var confirmmessage = "Are you sure you want to continue?"; var goifokay = "http://site.com/process.php"; var cancelmessage = "Action Cancelled"; if (confirm(confirmmessage)) { window.location = goifokay; } else { alert(cancelmessage); } } //--> </script> The above code must appear between the <head> and </head> tags of your document. <a href="#" onClick="queryAction()"> Click Here! </a> If you place the above code between the <body> and </body> of your document, a link will appear and when you click on it the confirm message will appear.
-
I try to maintain a good grammar and spelling standard, even outside of school. I also try to avoid ample use of common forum abbreviations. Lol, my english teacher claims to go out shopping armed with a permanent marker pen so she can correct the frequent misuse of the apostrophy (ie people write Yr11's instead of the correct, Yr11s). One time, she noticed Woolworths were advertising "100's of CD's" and rushed straight onto the computer to write a complaint .
-
Do You Believe In God Is God really there ? Your opinions?
electriic ink replied to viplanet's topic in General Discussion
I believe in God and I thank him for the great impact he has had on my life. After a prayer for help, I always feel the effects he has on my life, be they good or bad. And if they are bad, I always learn something from the experience. I believe that with his help, I have turned from a loner with no friends to someone who's liked (and I have the Christmas presents to prove it ) -
Hi. I've just created a php script. The main object of the script is to delete some old files and replace it with a new file with some new content, effectively moving the contents from one file to another. These are the first 50 lines of the file: $a_stream = fopen($a_B . ".cmat", "w+"); fwrite($a_stream, $new_page_contents); fclose($a_stream); /* Calculate For The "B" Group - The Group Of The Games UniQue Numbers */ $b_1 = file_get_contents("/home/cmatcme/public_html/games/b_1.dat"); $b_2 = file_get_contents("/home/cmatcme/public_html/games/b_2.dat"); $b_3 = file_get_contents("/home/cmatcme/public_html/games/b_3.dat"); [highlight=yellow]$b_4 = file_get_contents("/home/cmatcme/public_html/games/b_4.dat");[/highlight] $b_5 = file_get_contents("/home/cmatcme/public_html/games/b_5.dat"); unlink("/home/cmatcme/public_html/games/b_6.dat"); $b6_stream = fopen("/home/cmatcme/public_html/games/b_6.dat", "w+"); fwrite($6_stream, $b_1); fclose($6_stream); unlink("/home/cmatcme/public_html/games/b_5.dat"); $b5_stream = fopen("/home/cmatcme/public_html/games/b_5.dat", "w+"); fwrite($5_stream, $b_2); fclose($5_stream); unlink("/home/cmatcme/public_html/games/b_4.dat"); $b4_stream = fopen("/home/cmatcme/public_html/games/b_4.dat", "w+"); fwrite($4_stream, $b_3); fclose($4_stream); unlink("/home/cmatcme/public_html/games/b_3.dat"); $b3_stream = fopen("/home/cmatcme/public_html/games/b_3.dat", "w+"); fwrite($3_stream, $b_4); fclose($3_stream); linenums:0'><? /* Calculate For The "A" Group - The Latest Games ID */ $a_B = 002; while(file_exists("a_" . $a_B . ".dat")) { $a_B++; } $new_page_contents = " <? $title = \"" . $_POST["new_name"] . "\"; include \"/home/cmatcme/public_html/header.php\"; echo = \"<h3>" . $_POST["new_name"] . "</h3> " . $_POST["new_desc"] . " <object> <embed src='" . $_POST["new_game_url"] . "'> </object> include \"/home/cmatcme/public_html/footer.php\"; ?> "; $a_stream = fopen($a_B . ".cmat", "w+"); fwrite($a_stream, $new_page_contents); fclose($a_stream); /* Calculate For The "B" Group - The Group Of The Games UniQue Numbers */ $b_1 = file_get_contents("/home/cmatcme/public_html/games/b_1.dat"); $b_2 = file_get_contents("/home/cmatcme/public_html/games/b_2.dat"); $b_3 = file_get_contents("/home/cmatcme/public_html/games/b_3.dat"); [highlight=yellow]$b_4 = file_get_contents("/home/cmatcme/public_html/games/b_4.dat");[/highlight] $b_5 = file_get_contents("/home/cmatcme/public_html/games/b_5.dat"); unlink("/home/cmatcme/public_html/games/b_6.dat"); $b6_stream = fopen("/home/cmatcme/public_html/games/b_6.dat", "w+"); fwrite($6_stream, $b_1); fclose($6_stream); unlink("/home/cmatcme/public_html/games/b_5.dat"); $b5_stream = fopen("/home/cmatcme/public_html/games/b_5.dat", "w+"); fwrite($5_stream, $b_2); fclose($5_stream); unlink("/home/cmatcme/public_html/games/b_4.dat"); $b4_stream = fopen("/home/cmatcme/public_html/games/b_4.dat", "w+"); fwrite($4_stream, $b_3); fclose($4_stream); unlink("/home/cmatcme/public_html/games/b_3.dat"); $b3_stream = fopen("/home/cmatcme/public_html/games/b_3.dat", "w+"); fwrite($3_stream, $b_4); fclose($3_stream); Line 31 has been highlighed in red as that is where the error apparently is. This is the error: That line is no different to any of the others surrounding it, so why that line?
-
Hi Mav3rick and welcome to Xisto!I hope you enjoy your hosting over here and have a nice stay.BTW, I take it you're from RWT?
-
I don't think that that's a good idea. Say a user likes to keeps his/her credits around 2 days. Every day he logs on and posts a small post, just enough to bring his credits above 2. Therefore, every night when his/her credits drop below 2, he receives an email. Also, it'd mean more work for an admin, working out whether or not the excuse is legitimate etc etc.... Finally, it's each user's responsibilty to know what his/her credits are. The calculation isn't that hard. If I leave with 20 credits, I know I have to post by the end of the month to keep my site up.
-
We live quite a few miles away. We're not within the zone that needs to be evacuated but just outside of the place that was told earlier today to lock all of your windows/doors. I don't think that there was ever any risk that someone as far as me was going to die. Also, I've just noticed that I posted 36 people have died, 2 seriously, I meant 36 people were injured, 2 seriously. The currently figure, however is 43 injuries. =================== More pictures:
-
Massive Blasts In Hertfordshire Fuel Deposit At 6:03am today, a fuel deposit in Hertfordshire, England exploded sending flames up hundreds of feet into the air. The explosions could be heard as far away as the Netherlands. As a result many nearby residents have been told to evacuate their houses and others further away (such as myself) have been told to lock all windows and doors to prevent the intoxic fumes from coming into their homes. People have said that they have had buckled doors, damaged walls and windows blown-out as a result of this event. After the first explosion, witnesses told the police that there were two more explosions around half past six. Many more are expected throughout the day. Below are some pictures of the explosion and the horrendous aftermath: More of this story [+] More pictures ====================================================== I haven't personally heard any of the reported explosions. I just slept right through them. Fortunately for us, the fumes aren't heading our way but into the Atlantic somewhere. And, luckily for the people where the fumes are going towards, they have been reported as intoxic. Many people have died, 36 I think is the current figure but I don't think that it's as bad as the 7th July. Your thoughts?
-
Enable Registering Domains. Would be really nice..
electriic ink replied to SvVifT's topic in Web Hosting Support
If you really want a free domain, I suggest real web talk. You need to get 150 points for a free domain. -
How To Delete A Mail From My Webmail Admin
electriic ink replied to spy_charly's topic in Web Hosting Support
Just as with windows, when you delete a file, it doesn't get deleted. Instead, it gets moved to a directory under /home/you/.trash/. To delete all the files in this "trash can", log-on to your file manager: http://forums.xisto.com/no_longer_exists/ And click on the image of a bin. It'll be in the bottom right hand frame and look like this: And I've never used horde mail but I expect you'll have to click the [ Purge Delete ] button: However, with the databases, I've no idea as I've never used them. -
Muliple Domains to my trap17 subdomain
electriic ink replied to wassie's topic in Web Hosting Support
Have you tried parked domains? http://forums.xisto.com/no_longer_exists/ -
Diffrent Error Pages for diffrent subdomains
electriic ink replied to moldboy's topic in Web Hosting Support
Yes, I am 99.99% sure that it is possible. To create the error page for the ordinary domain, edit: /home/user/public_html/.htaccess And for the subdomain: /home/user/public_html/subdomain_name/.htaccess Using the code Amezis provided. -
Well, there are ways to get around the people who don't have js turned on. Most of it relies upon php: 03: Scroll To The Top Of The Page Place this right just after the <body> tag: <a name="to_top"></a>And this is your link: <a href="#to_top">Click here to go to the top!</a> 06: Display Today's Date This uses php: <? $day = date(l); $date = date(j); $suff = date(S); $month = $date(F); $year = date(Y); echo $day . $date.$suff . $month . $year;?> 07: Display The Time This uses php: <? $hr = date(G); $min = date(i); $sec = date(s); echo $hr . ":" . $min . ":" . $sec;?> 08: Popup Window This method doesn't open the window at a set height / width: <a href="/core_files/stuff.cfm" target="_blank">Click here</a> 10: Updated Copyright Notice This uses php: <? $this_year = date(Y); echo "© Copyright " . $this_year . ". All rights reserved.";?>Some items have been missed out because they can't be done with html / php (at least not to my knowledge). Till then I suggest you put the following code after the javascript: <p> Unfortunately, this features requires javascript. Please enable javascript in your browser. To learn how to enable it, click <a href="buymebuyme.com" title="Follow these instructions to enable javascript!">here</a></p>All code on mentioned on this page should be placed inside <noscript> and </noscript> tags!
-
This Really Works And I Have My Check To Prove It
electriic ink replied to astradamasta's topic in Business Forum
Great, where's your cheque?