Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 114
Search took 0.20 seconds.
Search: Posts Made By: amcf1992
Forum: MySQL 02-05-2013, 10:46 PM
Replies: 1
Views: 588
Posted By amcf1992
SQL error

Here is my SQL create query, im getting a MySQL syntax error at line 8


CREATE TABLE `members` (
`member_id` int(11) unsigned NOT NULL auto_increment,
`firstname` varchar(100) default...
Forum: PHP 02-01-2013, 09:04 AM
Replies: 1
Views: 252
Posted By amcf1992
New line after echoing .$row['column'];

How would I echo a new line after echoing row data

<?php


mysql_connect("localhost", "root", "root") or die(mysql_error());
mysql_select_db("auth") or die(mysql_error());


$result =...
Forum: PHP 01-30-2013, 11:02 AM
Replies: 2
Views: 259
Posted By amcf1992
login not working

Im coding a login

Error message:
Parse error: syntax error, unexpected end of file in C:\xampp\htdocs\files\login.php on line 105


Login.php
<?php
Forum: PHP 01-29-2013, 07:23 AM
Replies: 1
Views: 408
Posted By amcf1992
Parse error: syntax error, unexpected 'print' (T_PRINT)

I'm trying out different salts to store passwords, but I'm getting an error

Parse error: syntax error, unexpected 'print' (T_PRINT) in C:\xampp\htdocs\files\hash.php on line 6

<?php
...
Forum: PHP 01-07-2013, 05:04 AM
Replies: 2
Views: 286
Posted By amcf1992
Thank you, i was able to fix the issue once the...

Thank you, i was able to fix the issue once the mysql error problem was fixed, thanks for your help. I feel stupid, haha.
Forum: PHP 01-05-2013, 10:56 PM
Replies: 2
Views: 286
Posted By amcf1992
PHP or die mysql error

Thanks in advanced for the help, anyways i'm coding a register script
but im not seeing the mysql_error message, the page when executed doesn't show the actual mysql error ( like it should), it just...
Forum: PHP 09-13-2012, 02:08 AM
Replies: 53
Views: 3,153
Posted By amcf1992
The server will send a text anonymously. There is...

The server will send a text anonymously. There is to from, just a $to variable
Forum: PHP 09-12-2012, 10:52 PM
Replies: 53
Views: 3,153
Posted By amcf1992
It stays stuckk on send.php, It may be something...

It stays stuckk on send.php, It may be something with array or the select statement.
Thanks
Forum: PHP 09-12-2012, 09:02 PM
Replies: 53
Views: 3,153
Posted By amcf1992
Any help is greatly appreciated.

Any help is greatly appreciated.
Forum: PHP 09-11-2012, 10:50 PM
Replies: 53
Views: 3,153
Posted By amcf1992
Its part of several PHP projects im doing to be...

Its part of several PHP projects im doing to be able to better understanding PHP
Forum: PHP 09-11-2012, 10:48 PM
Replies: 53
Views: 3,153
Posted By amcf1992
My code as per your code fix: Still stuck at...

My code as per your code fix: Still stuck at send.php


Code:

<?php
$con = mysql_connect("localhost","friendko_admin","Macbookpro17#");
if (!$con)
{
die('Could not connect: ' ....
Forum: PHP 09-10-2012, 12:35 AM
Replies: 53
Views: 3,153
Posted By amcf1992
My semi-working code upto the sms part <?php...

My semi-working code upto the sms part

<?php

$con = mysql_connect("localhost","friendko_admin","Macbookpro17#");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
Forum: PHP 09-09-2012, 10:45 PM
Replies: 53
Views: 3,153
Posted By amcf1992
Thank you for that, I've been to successfully...

Thank you for that, I've been to successfully lookup the row information pertaining to that 11 digit code. Now im stuck sending the text message for that person. In other words, Any ideas on sending...
Forum: PHP 09-07-2012, 07:00 PM
Replies: 53
Views: 3,153
Posted By amcf1992
I got the 11 digit number to pull mysql...

I got the 11 digit number to pull mysql successfully. My variables work.
I have one problem, app still stuck on send.php


Full Code

<?php

$con =...
Forum: PHP 09-07-2012, 12:25 AM
Replies: 53
Views: 3,153
Posted By amcf1992
Thats the whats showing up upon changing the...

Thats the whats showing up upon changing the column name, the table does exist.
Forum: PHP 09-07-2012, 12:24 AM
Replies: 53
Views: 3,153
Posted By amcf1992
Table 'friendko_text.friendko_text' doesn't exist...

Table 'friendko_text.friendko_text' doesn't exist
SELECT id, email, keycode, carrier, cell FROM friendko_text WHERE keycode = 'KT019590332'
Forum: PHP 09-07-2012, 12:08 AM
Replies: 53
Views: 3,153
Posted By amcf1992
How would I rename a mysql columns exactly, my...

How would I rename a mysql columns exactly, my alter query is failing

alter users change key keycode varchar (11) ;
Forum: PHP 09-04-2012, 02:02 AM
Replies: 53
Views: 3,153
Posted By amcf1992
I did make that change now im getting the...

I did make that change now im getting the following

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'key, ...
Forum: PHP 09-04-2012, 12:57 AM
Replies: 53
Views: 3,153
Posted By amcf1992
http://friendkonnect.com/projects/emailtext/new/me...

http://friendkonnect.com/projects/emailtext/new/message/

Enter the 11digit code: KT019590332


I tried the code fix with the selecting the columns, still not displaying echo vars from the...
Forum: PHP 09-03-2012, 11:50 PM
Replies: 53
Views: 3,153
Posted By amcf1992
Full PHP Code<?php $con =...

Full PHP Code<?php
$con = mysql_connect("localhost","friendko_admin","Macbookpro17#");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}

mysql_select_db("friendko_text",...
Forum: PHP 09-03-2012, 11:39 PM
Replies: 53
Views: 3,153
Posted By amcf1992
Yes, very insecure. I am just focusing on getting...

Yes, very insecure. I am just focusing on getting this to work

I removed $from, since it had no value. Also the its still stuck on send.php

now its

$con =...
Forum: PHP 09-03-2012, 11:22 PM
Replies: 53
Views: 3,153
Posted By amcf1992
Code update: <?php $con =...

Code update:

<?php
$con = mysql_connect("localhost","friendko_admin","Macbookpro17#");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
...
Forum: PHP 09-03-2012, 01:25 AM
Replies: 53
Views: 3,153
Posted By amcf1992
Its not an api key, its a mysql value

Its not an api key, its a mysql value
Forum: PHP 09-03-2012, 01:06 AM
Replies: 53
Views: 3,153
Posted By amcf1992
Here is my updated code: HTML FORM ...

Here is my updated code:

HTML FORM

<html>
<head>
</head>
<body>
<form id="sms" name="sms" method="post" action="send.php">
<table width="400">
Forum: PHP 09-03-2012, 12:26 AM
Replies: 53
Views: 3,153
Posted By amcf1992
Thanks for everyones responses, I did make the...

Thanks for everyones responses, I did make the change as mentioned but its still redirection me to sms_error.php

Here my code so far

<?php
$con =...
Showing results 1 to 25 of 114

 
Forum Jump

All times are GMT +1. The time now is 07:36 PM.