- 1
Php script
If am to write a php script what text editor can I use or, what the file extension for it, Or is thier any difference between the file extension
4 Antworten
+ 3
This will help you:
https://code.sololearn.com/wbbZ17jMORq6/?ref=app
+ 1
You would answer this kind of question in google [if you know how to]
+ 1
any plain text editor (not word treatment softwares), from basic to extended (syntax hilighting and so on...) or ide tools (Integrated Development Environment)...
usual php script file extension is '.php', but depending on server configuration running php interpreter, could be anything else (including specific extension to target specific php versions): you should refer to your php interpreter / server documentation to know wich is the one(s) you should use (basically, if not unusual configurtion, '.php' should work and run the default php version interpreter bundled with your server).
+ 1
Micheal Alfred
You can use any text editor like notepad++ but you have to save it with .php extension and to see result of your page on browser you need server like WAMP server, XAMPP server.