-
Content Count
462 -
Joined
-
Last visited
-
Days Won
1
Content Type
Profiles
Forums
Calendar
Everything posted by Mudsaf
-
somehow i can't get even this working O.o <html><head> <script type="text/javascript">document.getElementById("peanut").innerHTML="ABC";</script></head><body> <span id="peanut"></span> </body></html> Fixed, required button to call function
- 6 replies
-
- Javascript
- Question
-
(and 1 more)
Tagged with:
-
Alrights, ill give try tried to save time.
- 6 replies
-
- Javascript
- Question
-
(and 1 more)
Tagged with:
-
I tryed query this worked. SELECT symbol,stockname,buysell FROM followlist WHERE symbol = 'DHI'; It checked 'DHI' from symbol column, works for me all i require is table where is these columns (symbol, stockname & buysell)
-
So the basic idea, in the webpage there would be example <span id="Images"></span> and the images should go inside. For example if the count = 0 the image 0.jpg would go inside span. Example2 if the count =1 image 1.jpg would go inside span. Im just asking does this look like it would work? Haven't tested yet. // JavaScript Documentvar count = 0;function image() {var img = document.getlementById("Images").innerHTML='<img src="/includes/images/' && count && '.jpg " width="800" height="600" />';}function nextimage() {count = count + 1;}function previousim
- 6 replies
-
- 1
-
-
- Javascript
- Question
-
(and 1 more)
Tagged with:
-
I suggest free host: 000webhost.comOffers 1500MB disc space + alot of more
-
Thankyou Ingolme, you fixed my problem. Code that is working is like this if any1 face this problem. Thanks for all others too for trying to help me i appreciate it! <html><head><link href="style/beta.css" rel="stylesheet" type="text/css"><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta name="description" content="Confirm logging"><meta name="keywords" content="Confirm, Login, Mudsaf.comule.com, Mudsaf.info"></head><body><?phpsession_start();include 'connect.php';if ($_SESSION['check']=true) {echo "<a href=\"login_c
-
When i watched page source code the part from-load g& #2 w-32?(f-bb>>&-p9yI@-)bSlj-wVyIW-(is orange. Does it have any effect or? I readed this from Unicode and HTML Wiki A character reference takes the form N;, where N is either a decimal number for the Unicode code point, or a hexadecimal number, in which case it must be prefixed by x. (I Have the ) Aftere bit figuring out i noticed when i add text to HTML the same #& and it does it like this<p>#&</p><p>&#</p>
-
Actually this didint help me anything . Code is like this and still doesn't work. <html><head><link href="style/beta.css" rel="stylesheet" type="text/css"><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta name="description" content="Confirm logging"><meta name="keywords" content="Confirm, Login, Mudsaf.comule.com, Mudsaf.info"></head><body><?phpsession_start();include 'connect.php';if ($_SESSION['check']=true) {echo "<a href=\"login_confirm.php\">Return to main</a>";echo " | ";echo "<a href=\"logout.php\"&
-
So you made this coding? <html><body><?phpecho "Hello World";?></body></html> You need webhosting tool to see PHP pages. For it example, xampp or wamp would be good since you are learning php, because it has sql server in same. Xampp Download Wamp Download After you've downloaded Xampp OR Wamp you start apache server and put your website files to Xampp (htdocs folder) OR Wamp (www folder). After you add your files there you go to http://localhost/FILENAMEHERE.php or if its in folder inside www or htdocs folder example htdocs/practice2 you use http://localhost/
-
Changed on PhpMyAdmin to utf8_general_ci. Still doesn't show it correctly. Serve the page as UTF-8? Here is my PHP Code. <?phpsession_start();include 'connect.php'; if ($_SESSION['check']=true) {echo "<a href=\"login_confirm.php\">Return to main</a>";echo " | ";echo "<a href=\"logout.php\">Logout</a>";echo "<br>";$id = $_SESSION['AccID'];$query = "SELECT * FROM war3savecode WHERE AccountID = $id";$querygoh = "SELECT * FROM war3savecode WHERE AccountID = $id AND Gamename = 'Guilds of Hyppos' AND visible = 'Yes'";$result = mysql_query($query) or die("Error on re
-
Saved the file as UTF-8, but didin't help, charset = utf-8. (Opened with notepad the php file and added on encoding UTF-8 is that correct?). How do i make column collation to utf-8.
-
So im having this problem with my php, when i get data from my SQL database example of this.gw-32?(f-bb>>&-p9yI@-)bSlj-wVyIW-(it will show it at website like this -load gw-32?(f-bb>>&-p9yI@-)bSlj-wVyIW-( So when it adds it goes like . Text is echoed to table. SQL type = TEXT. This is my charset on the page: <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> Please any fix/help would be nice .