InterviewSolution
Saved Bookmarks
| 1. |
How can we make a constant in PHP? |
|
Answer» With the HELP of DEFINE(), we can MAKE CONSTANTS in PHP. Exampledefine('DB_NAME', 'bestInterviewQ') |
|