Jump to content

trq

Staff Alumni
  • Posts

    30,999
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by trq

  1. Can we see your include_path directive from your ini file?
  2. This topic has been moved to PHP Coding Help. http://www.phpfreaks.com/forums/index.php?topic=330279.0
  3. shiva86, do not start duplicating your questions in multiple threads.
  4. The file will execute completely when your errors are fixed. Care to answer the questions I asked in my first reply?
  5. The file global-inc.php obviously doesn't exist two directories up from login.php, can you varify it is indeed there? And what permissions are on the file? Can we see login.php? (In tags please)
  6. These are likely either coding issues or permissions issues (or both). You'll need to open a new thread in the PHP Help forum and try to be a bit more detailed with what your issues actually are.
  7. This topic has been moved to Third Party PHP Scripts. http://www.phpfreaks.com/forums/index.php?topic=330152.0
  8. Sorry but your last post made little sense. Um, to browse the internet you point your browser to a resource. To execute php is no different.
  9. Sorry, this.... echo rtrim($return, ','); Should likely be..... echo rtrim($return, ', ');
  10. I thought you said you have them successfully installed? All you need do is place your php code within your servers document root then visit http://localhost/filename.php (where filename.php is the name of the php file you wish to view) in your browser.
  11. if ($result = mysql_query ("SELECT dateline, dateline_from, eventid, title FROM vb_event WHERE calendarid = 1 AND dateline_from >= '$day_before' ORDER BY dateline_from LIMIT 2")) { if (mysql_num_rows($result)) { $return = ''; while ($row = mysql_fetch_array( $result )) { $return .= "<a href='/forum/calendar.php?do=getinfo&e=" . $row['eventid'] . "&c=1' title='". $row['title'] . "' style='font-size:12px;'>" . $row['title'] . "</a>, "; } echo rtrim($return, ','); } }
  12. This topic has been moved to Other Web Server Software. http://www.phpfreaks.com/forums/index.php?topic=330148.0
  13. Um... isn't that your test server already?
  14. This topic has been moved to PHP Coding Help. http://www.phpfreaks.com/forums/index.php?topic=330029.0
  15. This topic has been moved to PHP Applications. http://www.phpfreaks.com/forums/index.php?topic=329961.0
  16. You do realize this board is for design critique?
  17. This topic has been moved to CSS Help. http://www.phpfreaks.com/forums/index.php?topic=329775.0
  18. If you track down the query_posts() function you could echo the argument within there.
  19. This topic has been moved to PHP Applications. http://www.phpfreaks.com/forums/index.php?topic=329855.0
  20. Your editing the code, what exactly do you want to view?
  21. http://en.wikipedia.org/wiki/Comparison_of_issue_tracking_systems
  22. This topic has been moved to Miscellaneous. http://www.phpfreaks.com/forums/index.php?topic=329209.0
  23. This topic has been moved to JavaScript Help. http://www.phpfreaks.com/forums/index.php?topic=329157.0
×
×
  • 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.