-
Posts
783 -
Joined
-
Last visited
Everything posted by ZulfadlyAshBurn
-
check your code for syntax error. have your tried to run the script? and remove the sleep(30); it would save time.
-
you didnt specify $handle ?
-
Why do you need a cron job? Why must it be run 10 hours continuously? Why not just execute it every time you need it?
-
code please. maybe your code is causing the internal server error. <? php flush(); include('exec2.php'); ?>
-
There are many WYSIWYG editor: Link
-
You would need to learn php, html, mySQL, javascript and css. You would need to create a web design then insert all the required stuffs. I have created my own cms. Its hard work. Took me a month to fully complete it.
-
well sometimes you just need to start from scratch and work your way our. try ajax scripting. with php. quite easy to be done. seriously i found one on youtube? link
-
just asking, if your game is coded using html or flash? if its flash, its possible. If html somehow its possible. the game should be a iframe. the iframe would be in the page you want the user to play the game. in the game page, add the right click script to override. there you have. could be a tedious job
-
when i directly key in this url http://yu-ki-ko.com/fsns/Logged.php on the address bar i got this error. Notice: Undefined index: User in /home/yukikoco/public_html/fsns/Logged.php on line 107 Notice: Undefined index: Password in /home/yukikoco/public_html/fsns/Logged.php on line 108 You've entered an invalid username! Notice: Undefined index: User in /home/yukikoco/public_html/fsns/Logged.php on line 120 Your Input Username: Notice: Undefined index: Password in /home/yukikoco/public_html/fsns/Logged.php on line 121 Your Input Password: Please click here to go back!
-
www.Oldgamerz.co.uk 30+ Gaming Community
ZulfadlyAshBurn replied to OldG Paul's topic in Website Critique
nice site you've got there. clean layout. -
do you use css to hide your code or js? use display: none; when hide and use display: block; if you want it to appear. using jQuery can help improve if you want to have transitions and all.
-
what you mean by thumbicon? shouldnt you just use the facebook embed/object script? its much easier.
-
im creating something like this now.
-
stuck on what should be a simple thing!
ZulfadlyAshBurn replied to spiderwell's topic in Javascript Help
can you post your a_login.php code? so that we can have a look of what its going to do. -
guys, my site will be offline as i will be pushing a new code to the server and i will be transferring it to my main server instead of my free hosting server. once i have finish it, i will update your guys. i would take me a few days to at most a week. thanks for your understanding.
-
alright. thanks alot. i will try that out. hopefully it will work well.
-
you should use javascript to validate your form then ajax submit.
-
I am creating a webpage something like facebook. I have encounter with a problem. My page is working and it updates the news feed every seceond. The thing is now that, when im using developer console on chrome, it show the update.php being process every seconds and alot of request is done due to ajax loading of the feed every second. please take a look. http://andersonsec.info/beta/ that is my site. if you know how to load the feed every second without repeating the update.php file every second, help me !!!
-
how do i disable xss injections?
-
yes, i am using ajax to pass the form to a php script which validates the form and pass back the output to the page.
-
thanks dude. i will try it out. haha. alright. helps kinda sucks now.
-
I have just finished coding the front end of my social integration site for my CCA. I'm having a slight problem in preventing users from posting cross-side scripting or type scripts in the text box. How can I disallow users/disable users from typing <scripts> in the text area and send to server. this is my script. <form> <textarea id="textfm" name="text"; onclick="this.innerHTML = '';" onKeyPress="return submitenter(event)">Say something...</textarea> <input type="button" value="Share!" onClick="ajaxSubmit();"/> the ajax all works this is where it saves the code $text = "<img src='images/say.png' height='20px'/><a href='#'>Anonymous</a> " . $text . "<p style='float:right; color:#C0C0C0' align='right'><img ALIGN=ABSMIDDLE src='images/clock.png' height='20px'> " . date("d/m/y : H:i:s", time()) . "</img></p><hr color='#F0F0F0' width='100%' size='1'/>"; $rip = $_SERVER['REMOTE_ADDR']; $fp = fopen('log.txt', 'a+'); fwrite($fp, $text); fclose($fp); $fp = fopen('ip.txt', 'a+'); fwrite($fp, $rip); fclose($fp); readfile('log.txt'); }
-
I have been working on php, html, ajax,javascript and jquery. I have been coding this website for a week. Any ideas to improve on security, designs or anything else. Notice: this is not the finish website. This site is for my school cca. Website: http://www.andersonsec.info/beta Verification: http://www.andersonsec.info/phpfreaks.txt
-
sorry, my bad. somehow, it doesnt work or it just add to the end of doc. $fp = fopen('log.txt', 'a+'); rewind($fp); fwrite($fp, $text); fclose($fp); readfile('log.txt');