No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
16 Posted Topics
So here is the deal, I can not use Java. I went to touch up on my Java Programming Skills, so I could help out a few of my University friends with programming... And guess what. I can't use Java. Now I have been dealing with this issue for about … | |
So I am programming a binary to decimal conversion program... But the twist is, I want to Convert my input string to a const char, and from the const char I want to convert it to an integer... Because I can not just convert a string directly to a integer. … | |
Im trying to creat a password varification system where the user enters there password twice while making a user account but everytime the user enters there password it is telling them 'sorry, passwords dont match' Im trying to say if there are two input boxes in the first one they … | |
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home2/fellowes/public_html/createaccount.php on line 108 [CODE]include("conf.inc.php"); $tbl_name="tbl_courses"; $sql=mysql_query("SELECT * FROM $tbl_name WHERE crs_semister=1 AND crs_period='A'") or die(mysql_error()); $result=mysql_num_rows($sql);[/CODE] [CODE] <?php while($rows=mysql_fetch_array($result)) { ?> <option><?php echo $rows['crs_code']; ?>//Line 108</option> <?php } ?>[/CODE] | |
I am writing a forum site and this is an error message I randomly ran into. I have used this code structure before but never ran into this problem. "Fatal error: Call to undefined function form() in /home2/fellowes/public_html/comment.php on line 14" [CODE]<?php session_start(); $tbl_name="???"; $userid=$_SESSION[userid']; $username=$_SESSION['username']; $comment=form($_POST['txtComment']);[/CODE]This "$comment=form($_POST['txtComment']);" is line … | |
Re: [CODE]DROP TABLE IF EXISTS `users`; CREATE TABLE `users` ( `id` int(11) NOT NULL auto_increment, `code` varchar(255) default NULL, `rank` int(11) default NULL, `name` varchar(255) default NULL, `pop` varchar(255) default NULL PRIMARY KEY (`id`) ) TYPE = MyISAM;[/CODE] I am assuming you are using a mysql database This site has a … | |
Hi I have no experiance with vb6 and databases, but I do have experiance with mysql and php... I wanna make a game with vb6 and retrieve the user info from my sites database. How do I connect to the database in vb6. A tutorial would be nice. | |
I am trying to replace mysql fields with this code... But unfortunatly it is not working... I do not know why... Here is the code please help me. Thank you. [CODE] <?php session_start(); if ($_POST['txtName'] != ''){ $host="****"; $username="****"; $password="****"; $db_name="****"; $tbl_name="****"; mysql_connect("$host", "$username", "$password")or die("cannot connect"); mysql_select_db("$db_name")or die("cannot select … ![]() | |
Re: If this is just for a small group of people using winsock you can have one person host a server then have your friends connect to that server with clients using winsock | |
Im writing a website, but when one goes to login it is not detecting the username/password the code i used follows(I just started learning yesterday... so im kinda lost as to why its not working). [code=php] <?php session_start(); $errorMessage = ''; if (isset($_POST['txtUserId']) && isset($_POST['txtPassword'])) { $host="localhost"; $username="falconnest_forumuser"; $password="qazasdedc"; $db_name="falconnest_forum"; … | |
Hi, im interested in learning assembly... anyone know where I should start? | |
Re: Yah I agree, start with the basics and work your way up... im currently learning php + javascript... It helps to start off with blogs + forums first and work your way up. | |
Re: I am currently running visual basic 6 on Vista and I didnt have any troubles untill I upgraded from home premium to ultimate edition... I need to reinstall vb6 then it should work fine... | |
Hi im trying to load an Object well reading a file, But the code is not working I have used it several times but this time I am getting an error message "Invalid use of Property" and it is highlighting the 'Load' Function [CODE]Private Sub Terrain_Load() Dim intFileNum As Integer … | |
Hi im a student programmer and I was writing a program... and I need to beable to load a form from string variable like Private Sub cmdLoad_Click() dim strFormLink(99) as string strFormLink(1).Show End Sub That will not work... Have Any ideas(If you do I'd be really greatful I tried code … |
The End.