Jump to content

Reece S

Members
  • Posts

    18
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Reece S's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. cooldude832: that site is very good. I tried it in 3 of my 6 browsers, and only Opera displays perfect (I was gobsmacked at FF)
  2. hmm, interesting... I shall look into this cheers. BTW, I have devised a perfect (and unique) way of bugging IE lovers take a look: compare with any browser EXCEPT IE, then, once you satisfied it works ok, try it again with IE It still works, but boy does it bug them tell me what you think. PS: before you say I will lose visitors, I already know, but I have always made a point of opposing MS, let alone their crappy browsers, so anyone cooperating with that company doesn't deserve a relaxing surf if they think they can show their face on our website (I call that 2 faced)
  3. Never mind I decided to venture into a bit of javascript, and wrote this: <SCRIPT language="JavaScript"> var browserName=navigator.appName; if (browserName=="Microsoft Internet Explorer") { alert("Browser Incompatible - Firefox Needed"); } </SCRIPT> I just hope it dont crash on me Cheers for ur time though, very grateful.
  4. Yh, i was just thinking how foolish this may be. I have always forced my friends ito using FF, or other stuff, then got quite used to seeing that on screen, not actually thinking about the outside world OK, maybe a more sensible move would be to use a php string? something like: If "Internet Explorer" echo "message"; else echo"Welcome"; I know this aint real PHP, its just an idea. I CBA to type real coding. but is this possible?
  5. Hi, I am looking for a code that will let all other browsers navigate my website normally, but basically tell IE to get lost. I have had many problems over the years with IE, and its unique display. I thought that if I blocked access to my site when browsing on IE, it would help out greatly. I am hoping for a HTACCESS code, if not, then maybe something I could put on the header of every page, EXCEPT the one PPL get redirected to (obviously so it doesn't go into a loop) Sorry if this sounds confusing, here, i make it simple: "Is there a code to prevent access to a website when using Internet Explorer?" Thanks in Advance for any info.
  6. Hi, I have just installed Joomla, and now I am trying to add Banners. Well as for anyone who has used Joomla, tying to get help in their forums is like trying to draw blood from a stone. I have successfully created 2 banners, both say they are published, and both have all the right clients and categories. But for some reason, they don't display on the website pages. If anyone can help me with this I would be willing to give them 50 Clicks free advertising in repayment. Thanks in Advance.
  7. Quick Notice: This problem was solved with this: SELECT DISTINCT(column name) FROM table name Cheers anyway. Hope this helps other people with same problem.
  8. ahh, thanks. I am useless with PHP, I was experienced with C/C++. Cheers man.
  9. Um... where exactly do I put this??? Does it need a WHERE statement?
  10. Yeah true, but I am just trying to get a basic system working. I really appreciate your intentions, BTW thanks for the UNIQUE() thing, I will try it now. When my system collapses, al bear your warning in mind. Cheers again.
  11. I do have other tables, and I know exactly how each one works, but The part I am focusing on is this. I have a number of successfully queries running like this, but for this particular one, I need to ignore a columns duplicates. Is this possible?
  12. Hi, I have a database, that creates a new row for every public chat room that gets created (Gets deleted when chat finishes) and even if a user enters the same chat room, it creates a new row, both with same room, but 2 users. this results in "2 Row Count" and when printed, looks like 2 chat rooms, when it is really one. Is there a way to run the query but class all duplicates as one? (on a selected Column) Here is my current code: $result = mysql_query("SELECT * FROM ajaxim_chats"); $num_rows = mysql_num_rows($result); echo "<strong>Public Chatrooms: </strong>$num_rows";
  13. Very true, That is very useful. I come to expect a more technical reason behind the power of PHP, but then, when you stop, and slow down enough to think, it was designed by humans, and since when have they ever been the type to trust, or indeed, be trust-worthy? Thanks for the Info, and thanks for your quick replies.
  14. This just goes to show how innexperienced I am. You sorted it, it was the direct URL, i used an internal link instead. But I still dont understand why it objects, they are practically. both the same. No, I dont have error reporting on, and I dont have them built into my scripting either, I wanted to save a fe KB, lol, my silly mistake. Thanks for your help, but I am still a bit stumped, but at least it works, I will hack further into the details later. Cheers M8
  15. I have only just got my head around on problem, now onto this, someone please tell me wht this keep redirecting to the login page (main.php) regardless of session status. <?php session_start(); ?> <? include("http://pcgenius.hyperphp.com/members/include/session.php"); ?> <?php if($session->logged_in) { header('Location:http://www.drivehq.com/file/df.aspx/shareID3045061/fileID118397778/PGC_v3.1.zip'); }else{ header('Location:http://pcgenius.hyperphp.com/members/main.php'); } ?> Thanks in Advance.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.