
MDCode
Members-
Posts
640 -
Joined
-
Last visited
-
Days Won
1
Everything posted by MDCode
-
You definitely want to make distinctions between hyperlinks and text. I was sitting there clicking in the top right corner until I viewed the source of the page. As well as the links on the left look just like plain txt. Also I'm not sure if it's supposed to have a large, white, vertical line to the right? If not, you need to fix in safari, firefox, chrome, and probably more.
-
Error: Column 'column_Name' In Where Clause Is Ambiguous
MDCode replied to EzwanAbid's topic in PHP Coding Help
If both tables have a student_id column you need to specify which table to select it from. -
http://php.net/manual/en/regexp.reference.assertions.php
-
Need Help Explaining Where I Go Wrong In My Theories
MDCode replied to gaogier's topic in Application Design
That made me lol -
1. Use jquery or ajax. 2. Not really.
-
Need Help With Code On Inserting Text,image And Date In Mysql Database
MDCode replied to dekon's topic in PHP Coding Help
Or not closing their echoes -
The error is clear, the directory doesn't exist. You are calling the the directory of storage by path and file. I think you mean $targetPath
-
Pfft. Mine was so professional (not really now that I look at it). There is no way for a script to tell you where it's being run from without php setting issues
-
You can not select form two tables like that, if you echoed mysql error you would see an error.
-
What is the point of $q? You may need to post search.php
- 1 reply
-
- jquery
- javascript
-
(and 2 more)
Tagged with:
-
And which errors would those be resulting in?
-
Try putting a die; or exit; after each header();
-
Use quotes around your query instead of apostrophes...
-
Yahoo should be automatically setting up the path...if not you, need a new host.
-
Same thing happens if you search for php. It just means that your search was too short.
-
1. Single quoted variables will not be parsed so $dn = mysql_num_rows(mysql_query('select id from users where username="'.$username.'"')); will always return empty. 2. Use the code tags when posting code
-
You're going to have to show something because I have no idea unless you are not using session_start(); to start the sessions
-
Help...uploading Files/database To Control Panel
MDCode replied to needsomehelp1's topic in MySQL Help
No one will do this for free. Post in the freelance section. -
<?php echo "$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]"; ?>
-
How Do I Get $Salt When It's In The Config.php File?
MDCode replied to ChayaCooper's topic in PHP Coding Help
If you require the file, all variables set in the file will be available by just calling that variable.- 10 replies
-
- salt
- config.php
-
(and 3 more)
Tagged with:
-
You are going to have to be much, much more specific. Especially since the page doesn't load
-
$_SESSION variables are case-sensitive and need to be all uppercase
-
<?php echo __FILE__; ?>
-
Use $.post to submit to another page and check everything you need on it. Then return the html result to a div
-
Jquery -> $.post == Result Messes Up Table.
MDCode replied to notsophpfreakish's topic in Javascript Help
I would make a separate php file. Submit the data to it and check on there, echo out anything you need because that is considered html. otherpage.php <?php echo "jquery ftw"; ?> jquery: // submit to other page $.post('/otherpage.php', {display: display}, function(data) { // will display jquery ftw in the displaycheck div $('#displaycheck').html(data);