frazz86
Members-
Content Count
44 -
Joined
-
Last visited
Everything posted by frazz86
-
Yes there is a point lol so everyone please watch out for that but it will be something along the lines of them two
-
Yea i couldn't help with the triple post i had done for some reason it kept denieing me is that why im on 20% warn? cos i have no idea why...
-
yordan why have i been warned?
-
Hi all in other post you may know i use notepad++ i was wondering who else uses it and what plugins have you got as i have no plugins dunno what i should get i am a PHP/mysql/HTML Scripter nothing else really so any plugins?
-
What Program do you use to write your scripts in?I tend to use notepad ++ as its quite handy in that if you select which scripting language your using it color codes to show if your doing it right i know there are many scripting programs out there im justing wondering what ones do you use but i find notepad++ a breeze its so easy to use and easy to spot errors as i could not stand notepad normal because you don't know if you typed a error or not and just have to hope. I have heard of Jedit i tried it and i found i did not like it as much i found it a bit harder to use so i just changed back to my trusted companion XD notepad ++
-
Thanks for that i could have sworn it was ht_docs but is just htdocs sorry i really had not noticed lol thanks for pointing it out
-
Tell Us Which Database You Use Mostly which one you prefer
frazz86 replied to yordan's topic in Programming
I like to use Mysql just i seems easiest for use and i find the best and i didn't really know there were others out there it seems Mysql is the most used of them all in websites so i have to use it lol but i do prefer it, i have tried the others and don't really like them and like 8ennett said PHP=mysql they go hand in hand really most Php scripters use it -
8ennett's Php Web Community: Part 1 Advanced User Account System
frazz86 replied to 8ennett's topic in Programming
AWESOME tutorial man i can't wait for your next text and get rid of that pesky MCCODES lol its really easy to follow so thanks so much i have been trying to make one of these games for ages -
Mythbusters I refuse your reality and substitute my own
frazz86 replied to Eggie's topic in Science and Technology
I love mythbusters i find it very funny at the same time as learning stuff it's a very good program for education because at the same time as being educative it's funny and keeps you wanting to read moresmall description of the game :)MythBusters is an American popular science television program on the Discovery Channel starring American special effects experts Adam Savage and Jamie Hyneman, who use basic elements of the scientific method to test the validity of various rumors, urban legends, myths and news stories in popular culture -
Hi every one i decided to make a post about your self express your self.Stuff like why your hereWhat your dream isname?Why choose your usernameWell heres meMy name is fraser, i come from england and i live in suffolk, i am here to learn more about PHP, and other coding as i would like make a game.I chose my user name because my nickname is frazz and 86 popped into my headI like playing computer games such as movoda.netWell post what you fell like this is just a fun post i also like TV I watch quite alot of crime videosSuch as NCIS CSI and many more and like the program weird of what.Well thats about me summed up what about You!
-
If you need the link to download xampp here they are Linux XAMPP Window's XAMPP Mac OS XAMPP Solaris XAMPP After the download has finished it should automatic come up with its setup if it does not come up with a set up follow these instructions: Step1: Go to where you Installed the files Step2:Click Setup_XAMPP Step3:Follow its steps Step4 Your back to where you should be! Now click XAMPP_start and wait for it to load OR Click XAMPP_control This also serves the same purpose as XAMPP_start Once you have opened the control then click start on Apache and Mysql Once (xampp start) has finished loading and auto close Once (xampp control) you have started Apache and Mysql You can now start making PHP files Oh YEY! once you have made a php file you can test it Put the php file in your XAMPP folder Under HT_Docs And then type in your browser LOCALHOST/phpfilename And your Php file will load !! Have fun
-
Hi i'm Showing you the starting points of HTML!! It's Probably the easiest to get the hang of so good luck Here is basic of all basic: This Code is ALWAYS in Html website Other wise it will not work <html><body></body></html>They are the basic tags .Now we will Learn how to do heading's and Paragraphs! <html><body><h1>A Heading</h1><p>A paragraph.</p></body></html>h1 is a Heading and p is a paragraphHere are some more headings <html><body><h1>A heading</h1><h2>A smaller heading</h2><h3>A even smaller heading</h3><h4>A even smaller heading </h4><h5>A even smaller heading</h5><h6>The smallest heading</h6></body></html>Each Header as you go down get smaller and smaller and smaller. always remember to starting tag and ending tag If you wanted to show a link in html you would do this: <html><body><a href="http://Xisto.com/index.php">This is a link</a></body></html>Well i found links very hard to learn when i was doing html due to there annoying set up but they are important.Now we heres how to show images that are in same directory as html page is. And other directories.. <html><body><img src="imagename.jpg/png/gif" width="104" height="142" /><img src="index/files/image.jpg/png/gif" width="104" height="142" /> <!--this would mean file is in index/files/ --></body></html>The width and height represents the size of the picture and the jpg,png and gif part is endings to some pictures To write comments in html its different to PHP but comments are important to help you remember what you have written! <html><body><!-- This is a comment --></body></html>That will let you put notes to your self which are very handy when making websitesNow i will show you how to split paragraphs up like this: Example of what codes going to do. Hello People Of The World <html><body><p>Hello<br />People<br />Of<br /> The <br /> World</p></body></html>The <br /> Represents a break in the line which if you didn't do it like that you would have to do this: <html><body><p>Hello</p><p>People</p><p>Of</p><p>The</p><p>World</p></body></html>Now for some types of text eg Big,bold and italic <html><body><p><b>This text is bold</b></p><p><big>This text is big</big></p><p><i>This text is italic</i></p><p><code>This is computer output</code></p><p>This is<sub> subscript</sub> and <sup>superscript</sup></p></body></html>Subscript is under normall line of text and super script is above normall line of text.Now for some colors <html><body><body style="background-color:yellow"><h2 style="background-color:red">This is a heading</h2><p style="background-color:green">This is a paragraph.</p></body></html>This makes the background color Yellow heading 2 (h2) Background color red and paragraph background color greenYou can also use hex codes to define colors Here are some basic hex codes ------------------- Black #000000 Red #FF0000 Green #00FF00 Blue #0000FF Yellow #FFFF00 bright blue/turquoise #00FFFF Purple #FF00FF Grey #C0C0C0 White #FFFFFF ------------------ Now for Font Color and size in text and in hex <html><body><h1 style="font-family:verdana">A heading</h1><p style="font-family:arial;color:red;font-size:20px;">A paragraph.</p></body></html> <html><body><h1 style="font-family:verdana">A heading</h1><p style="font-family:arial;color:#FF0000;font-size:20px;">A paragraph.</p></body></html>They are both red and both 20px sizeHeres a cool one Alignments <html><body><h1 style="text-align:center">This is a heading</h1><p>The heading above is aligned to the center of this page.</p><h2 style="text-align:left">This is a Heading aligned to the left</h2><h3 style="text-align:right">This is a Heading aligned to the right</h3></body></html>Thats how to text alignnow ill show you how to display a link with a name not with its address <html><body><a href="http://Xisto.com/index.php">Xisto!</a></body></html>That would display Xisto and it would be a link I hope this helps
-
Hi all, im a bit confused with the myCent/xistohosting stuff how to I link my billing account to my forum account?
-
XD never mind that is was my stupidly bad i have done it now
-
Yet another error 'Parse error: syntax error, unexpected T_STRING in /home/a9466816/public_html/mysql-connect.php on line 3'Here is my code<?DEFINE ('DB_USER', 'a9466816_db')DEFINE ('DB_PSWD', '....')// i have put my password in i have just blocked it out for you guys :)DEFINE ('DB_HOST', 'mysql4.000webhost.com')DEFINE ('DB_NAME', 'a9466816_db')$dbcon = mysqli_connect (DB_HOST, DB_USER, DB_PSWD, DB_NAME)if (!$dbcon) {die('There is a small error connecting to database')echo'Connection was very sucsessful'?>
-
Thanks all i have been looking on youtube and now have worked out how to Connect to a database its so simple yet i couldn't get it XDLol thanks for all the help
-
thanks all i will give it a go
-
I do know PHP i just can't for the mind off me work out MYSQL XD its so frustrating I NOW HAVE MCCODES V2 AND DOES NOT COME WITH THE MYSQL CONNECT FILE....
-
How do i connect?
-
ALSO I AM STUCK I KEEP GETTING ERRORS--Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'a9466816_db'@'localhost' (using password: YES) in /home/a9466816/public_html/mysql.php on line 2 if some one could help as to whats going on
-
Hi all i have decided i want to make a text based game like these... http://movoda.net/ http://www.syrnia.com/ http://forums.xisto.com/no_longer_exists/ I have got all the files for making a mafia text based game but i want to make a text based game like them any wanna help have good knowlage please PM asap thanks alot