- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
6 Posted Topics
Re: Exactly, you need to install apache2, php for apache and mysql for apache. Use the packet installer (don't remember what is called in ubuntu) Anyway, you've installed php correctly. The output you get from the terminal is correct. php parses the code, then outputs HTML code. So the result you're … | |
Hi, I'm developing a web app, but I think that maybe I'm not doing it the right way. See, for each page I take the GET variables from url, for instance: [url]www.webapp.com/?mode=register[/url] That way, the index gets the variable and displays the right page, in this case, the registration page. … | |
Re: at the end of the second file, replace this: [CODE] die(mysql_error()); [/CODE] with: [CODE] die(mysql_error().' <br />SQL statement: '.$sql); [/CODE] That way you could review the sql statement that's going through the mysql_query function and see where the error is. | |
Hey all, I'm developing a web app for a school, and among other options I need to generate PDF files from a pdf template, those pdf files must include personal info from clients, so they require to take the values from mysql which is easy to do. However, I don't … | |
hey all, The server where I host my website went into unscheduled maintenance, a few minutes later I noticed that the IP of the server changed (they probably moved my website to another server since it's paid hosting although shared). So, my website was back online but some things weren't … | |
Hey all, I have several cron jobs running but some of them take a lot of time to complete, since it requires fetching data from an external website and then updates my site's database. My hosting provider has a 120 second time limit for PHP scripts, which is too low … |