All Questions
Tagged with web-development mysql
13 questions
1
vote
0
answers
23
views
What are free services available for creating MySQL on cloud? [closed]
I am new to web development. My team is planning to create a dynamic website as a project. I want to have a relational database ( MySQL) but all tutorials seem to use MySQL and PHP locally. We want to ...
0
votes
1
answer
5k
views
How to fix warning in php : Warning: Undefined variable $nameError in C:\xampp\htdocs\mysql\insert.php on line 84 [closed]
As a beginner in PHP, I was trying to learn how PHP runs along with MySQL. So I was practicing how to insert data into a database using a form. So far this is what I did.
<?php
error_reporting(...
1
vote
2
answers
121
views
Creating a board with thousands of forums
I would like to create a message board that has separate forums for each movie, each actor, each director, etc. With modern forum software, is having many thousands of forums like this impractical for ...
3
votes
1
answer
292
views
Magento Backup using mysqldump
I have website using magento installed in ubuntu ec2 server. I would like to do a backup of the whole magento website. I stumbled on an article that tells me to run this command
http://www....
-1
votes
2
answers
51
views
Switch to Drupal [closed]
Currently I manage a website written entirely in html5, php, javascript and css3 with a mysql database.
The site resides on a dedicated server with CentOS and Plesk is used for management.
I thought ...
1
vote
4
answers
1k
views
Setting up a LAMP VM server for Development and Testing?
Info: I would like to set up a VM server on my local computer which will serve pages in the exact same way as my current hosting (but only to me on my local computer). I currently pay a big web ...
2
votes
1
answer
3k
views
Managing Xampp on USB for Mac and Windows machines
I am working on some PHP projects (Wordpress mostly) with MySQL databases and primarily use my Windows Desktop to do the work on whilst running Xampp.
This all works great until I need to take my ...
2
votes
0
answers
74
views
Good security practice for writing a php/mysql web app [closed]
I'm about to create a web app that is php/mysql based. It should contain multiple users and two levels of admin accounts.
It will most likely not be very likely to be attacked in any way. Still I am ...
1
vote
2
answers
269
views
Setting up a VM testing server [MySQL, HTML, & PHP webstore] Testing for SQL correctness?
Question: Is there a way to test for correctness once the SQL DB copy has been installed on the local machine so I can confidently move to step number 3? Is there any information on the web that would ...
1
vote
1
answer
503
views
What database engine should I use? [closed]
I don't know if this is the right place to ask this question but I want to become a web programmer for my occupation very soon. I actually went to a store known a PC WORLD in the UK where my laptop ...
7
votes
7
answers
3k
views
Adding a Forum to my site: build one from scratch or use existing open-source platform? [closed]
Note: I posted this originally to stackoverflow.com, had it closed, and was told to post it on programmers.stackexchange.com. So I posted it on programmers.stackexhange.com, had it cloased, and was ...
-1
votes
1
answer
130
views
Which Hosting Plan Should I use for this Web Application [duplicate]
Possible Duplicate:
How to find web hosting that meets my requirements?
I am developing a Web Application [PHP & MySQL] which is basically a rating website ( a social bookmarking site ). There ...
2
votes
4
answers
168
views
Assuming unique user names / logins, do I also need a unique userID number in the DB?
My users will login into a website using a login of their choosing, but which I will check against the DB to ensure unicity. Given this, should I also have a unique userID in the DB? This could be ...