cmgmyr
-
Posts
1,278 -
Joined
-
Last visited
Never
Posts posted by cmgmyr
-
-
try adding this to your table tag: cellspacing="0" cellpadding="0"
-Chris -
I will give you some help too if you need it.
I like your logo.
-Chris -
Looks pretty good so far, you should work on your logo a little more. I think that it would look a little better with a lighter blue and less of the shadows.
Also if the user has javascript disabled you should have a <noscript> notification showing them how to turn it on.
-Chris -
Yeah, I was right.
Check this out:
http://www.zend.com/manual/language.operators.comparison.php -
I believe it is "not equal to" try replacing it with != and see if you get the same result.
-Chris -
double check your phpinfo.php if the changes have been made in that. Go through the config file in phpMyAdmin there might be some sort of max size associated.
Hope this helps,
-Chris -
No problem, I hope it worked out for you.
-Chris -
I agree with steviewdr with all of his points. Please get rid of the scrolling text, if you still want something like that make something in flash so it looks a little more professional.
The site is coming a long though.
-Chris -
When your request is processing you can add some html with a button in it linked to myRequest.transport.abort(); that should kick it out of what it's doing
-Chris
-
no problem, you'll get the hang of it after a while...just keep asking your self "is this as efficient as I can make it?"
Just add the delete products under your delete man and it will take care of everything.
-Chris -
no your mysql_connect it just looked like host generated information...Just trying to save your skin if it was your real info :)
-
To load them in a single array try...
[code]<?php
//Find total number of ips
$query = "SELECT ip FROM table";
$result = mysql_query($query) or die('Query failed: ' . mysql_error());
$count = mysql_numrows($result);
$ips = array();
$x = 0;
while ($x < $count):
$ipaddress = mysql_result($result, $x, 'ipaddress');
$ips[$x] = $ipaddress;
$x++;
endwhile;
?>[/code]
Is that what you were looking for?
-Chris -
I hope that isn't your real connect information...if it is, I would edit that out ASAP!!!
-
Why do you have the id and name of the manufacturer in both tables, it would be a lot easier to just have the name in the "man" table. It will also cut down the amount of space your databse uses and actually make it faster.
you can use $sql = ("DELETE FROM man WHERE manid = '$Manufacturer'"); to delete the manufacturer and $sql = ("DELETE FROM products WHERE manid = '$Manufacturer'");
Hope that helps.
-Chris -
Thank you for that! I like phpMyAdmin it is a great tool to have and use. It saves soooo much time!
-
It just keeps doing a page refresh for me.
-
can you please show us some code?
-
you can also go to "Operations" in phpMyAdmin
-
try looking at some photoshop layout tutorials. those are a good place to start. After you get a good layout, then you can just plug in all of the php elements
-
yeah...needs lots - o - work
-
at the bottom of the ipn.php
-
yes, so why isn't it getting back?
-
I don't believe so. Since it's not updating the database, I'm assuming that it's not coming back.
-
anyone?
Would installing PHP interfere with anything?
in PHP Installation and Configuration
Posted
-Chris