
pulpfiction
Members-
Content Count
1,210 -
Joined
-
Last visited
Community Reputation
0 NeutralAbout pulpfiction
-
Rank
Dedicated Member
- Birthday 06/13/1983
Profile Information
-
Location
Oklahoma
-
Try this.. You can ignore the ORDER BY part if you need it sorted.SELECT REF, COUNT(*) AS TOTAL FROM TABLE_NAME GROUP BY REF ORDER BY COUNT(*) DESC
-
Try this SELECT NAME FROM TABLE1 WHERE ID NOT IN (SELECT REF FROM TABLE2)
-
http://www.hotscripts.com/PHP/Scripts_and_...zzes/index.html
-
I prefer installing WAMP5 which installs Apache, PHP5 and MySQL on Windows platform.http://www.wampserver.com/en/download.php
-
Im not a PHP expert, just try displaying the whole file. <?phpecho "<br>";$myFile = "http://www.amfiindia.com/portal/upload/downloadnav.txt";$handle = fopen($myFile, 'rb');$theData = fread($handle, filesize($myFile));fclose($fh);echo $theData;echo "hii testing!!!!";fclose($handle);?>
-
Table Background Continuing After Table Should Stop
pulpfiction replied to clryan's topic in HTML/XHTML
Using FF, I dont see any problem you mentioned, are you testing on a specific browser? -
The site looks really nice... One thing you can improve on is the dropdown menu, there seems to be a slight gap between the main menu and the dropdown. and the other menus have nice spacing and background but that seems to be missing for the dropdown menu.
-
Try this...p.top { float: left; text-align: left; font-size: .9em; } p.ask { text-align: right; font-size: .9em; color: #f751b9; } a.ask { color: #f751b9; float: right; text-align: right; }
-
asp:ListItem has a "Value" attribute. <asp:ListItem Value="0">Female</asp:ListItem><asp:ListItem Value="1">Male</asp:ListItem>Like all web controls, since the DropDownList just renders as a form element (a SELECT tag), its value can be retrieved from the Request object. For example, to retrieve the value of the control and output it to the screen, we might use code like this Request("gender")
-
Its not necessary to use double quotes for values of attributes in HTML but if you want to some XHTML standard then you need to have quotes for values...HTML: http://en.wikipedia.org/wiki/HTML [section 4.3]XHTML: http://en.wikipedia.org/wiki/Xhtml [section 1.2]
-
This might help....http://support.netfirms.com/article.php?id=509
-
Not really sure, but think its because of period [.]in the table name. did you have similar trouble before with the table name? try INSERT INTO [magicform.csv](UserEmail......Also try to print out the SQL query and see if its in the correct format.
-
this is kinda lengthy code.... but has solution.http://www.quirksmode.org/js/detect.html
-
Liked #3 but #4 looks better....
-
use just "repeat". The background image will be repeated vertically and horizontally.