Jump to content

ober

Staff Alumni
  • Posts

    5,327
  • Joined

  • Last visited

Everything posted by ober

  1. Possibly... we'd have to see the entire format and you'd have to write a custom converter.
  2. I don't have any URLs specifically... but it really comes down to understanding your database and how to use SQL effectively.  If you know those 2 things and how to build a simple HTML form and display the results, then you're all set.  If you don't understand the display part, do a search or look at the tutorials on our main site: www.phpfreaks.com  This has been covered literally hundreds of times.
  3. Without a cron job, not really.  The only other way would be to open a browser on a computer and leave it open, using a Javascript snippet to either reload the page every x minutes or call an AJAX script.
  4. You cannot remove IE from the system pre-Vista.  It is an integral part of the OS.  As far as Vista, I haven't heard that, but I'd be surprised if it's true.
  5. Shouldn't you be asking all these PS questions in a forum better suited to answer them?!!?
  6. I haven't done this myself, but you could probably make it work.  The only issue is figuring out all the DLLs to register, etc, etc.
  7. Jocka, I use Trillian right now on my desktop and I can send/recieve messages from my IM people through my phone.  I think that answers #2.  They can get IMs through their phone from me if I add their phone to my buddy list.
  8. Close... but a little more complicated than that.
  9. One thing my personal site is missing is a fast way to get and create quotes for projects.  I then need a way to automate replies to quotes (with a full, detailed response).  Once I get a job, I have a primative way to label the type of work I'm doing, how many units of work I've done and then a price is pulled from my database and a little math is performed to create an invoice.  This then sends an email to the user with an invoice number that they can use to get into my billing system and view their invoice.  They they print it out, drop a check in an envelope, sign and copy the invoice and mail it back to me. That's how some handle it.  Others pay me electronically, but that's a whole other story.  My problem right now is that it's only semi-dynamic.  If I wanted to create a project code/price on the fly, I can't as the system stands.  I also don't currently have a way to provide status and tracking on projects to my clients.  It'd be nice to have a system where I could enter comments and give the user a "tracking" link to their project to view the progress of my work. I hope that makes a little more sense.  As another project, it might be nice to create a web-based CVS type project.  That would be kinda cool.
  10. How about an invoice system with full project creation/pricing management/quotations?
  11. .... I'm not sure what you would do with such a domain.  I don't think anyone would want to buy it.
  12. I'm going to edit your title... not only is it in all caps, but it is not descriptive of the question. To answer your question, you need to create the pages to edit and update the profile.  But you only need to create it once.  Then whenever each member goes into the page, you get their information based on their session/cookie login information.
  13. A few things: 1) session_start() should be the first line in the file. 2) How are you viewing the value?  echo $_SESSION['user']; ? 3) What version of PHP?
  14. Why?  What would you possibly want the nameserver for?
  15. Keep in mind that you must have an intermediary page (or at least the processing code) between the clicking of "add to cart" and the header() call. I assume you're putting all of your items in a form.  So when the action of the form that has the "add to cart" button should be something like "<form action="Cart_func.php?act=add" method="post">"  Then of course your pid would be passed from the form itself, or however you're handling it. Cart_func.php should be nothing but the processing of adding that item to the shopping cart and then the header() call to go to the actual cart page.  This also provides the added bonus of not having the user hit refresh and add the item to the cart again. I hope that all makes sense.
  16. Welcome to the forums... or should I say welcome to posting on these forums!?  ;) We might need a little more information: 1) What have you done to try and fix it? 2) When you say it's not posted, does it just show a blank area or are you getting an error? 3) Is getSqlField a custom function, and if so, can you post that code?  It may be how that works that is fouling up the rest of your processing.
  17. When you say it doesn't show the right column... do you mean that it just comes up as a white page or it messes up the actual layout?  If you include the index.php file by itself, does it actually work?
  18. I don't know for 100% sure, but I'm about 98% sure you can't get that information via PHP.
  19. [quote author=steelmanronald06 link=topic=105014.msg419971#msg419971 date=1156250111] Last year I moved every computer in the school to firefox. I then deleted every short cut and everything to Internet Explorer, until you could only find it by running a search.  I have recently suggested the same thing at my college and all new computers, and the ones we repair, will come standard install FireFox.  [/quote] Ya know... I'm sure it'd be nice to have everyone NOT using IE, but you really can't force people like that.  I've tried to get my wife to use Opera or FF, but she's too used to IE and doesn't WANT to switch.  I've used IE7 and I'm hoping she'll see it as the big POS I saw it as and finally be pushed into switching, but I won't hold my breath. In short, some people resist change and forcing them is only going to bring on problems.
  20. It is possible to create Excel files using a Pear package, but I don't know about the other 2.  PPT files would be quite a bit harder and I wouldn't recommend it.  Also keep in mind that you must have a version (preferrably 2003) of Office installed on the webserver.
  21. www.ajaxfreaks.com That is a sister-site to phpfreaks.com and should help you out quite a bit.  For what we're talking about here, you won't need any XML unless you're storing the data in XML files instead of a database.
  22. http://hsivonen.iki.fi/php-utf8/ http://www.phpwact.org/php/i18n/utf-8 http://www.geeklog.net/article.php/200410120657418 You might try google next time.
  23. Is that all of your code?  I don't see a call to mysql_query() anywhere after you make the query.
  24. <a href='search_basic.php?pageno=$nextpage&amp;City=$city&amp;Rooms=$rooms'>NEXT</a> [nobbc]Your problem is that you were using ? between all the variables.  you need to use a ? after the base php file and then & between everything else.  And &amp; is what you should be using for valid markup.  That is the HTML equivalent of the ampersand.[/nobbc]
×
×
  • 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.