Posts by Ívini • 96 points
3 posts
-
3
votes2
answers1309
viewsA: Editable table in PHP
I do this by manipulating the DOM, through custom attributes, like data-id="id-do-teu-registro" <tr data-id='2'> .... </tr> In Javascript, I create a function, in which I will make a…
-
1
votes1
answer37
viewsA: Another global chat room. What is the technology for this type of application?
Possibly it is javascript and Googlemaps api, if you check the source code you will see that it is only Javascript, now the backend part, can be PHP, RUBY, JAVA, NODE.JS, Nosql database language, or…
-
1
votes1
answer663
viewsA: Problems sending php email
First try to force the errors to show: <?php ini_set('display_errors','On'); error_reporting(E_ALL); It may also be that the function mail(), is disabled in the kinghost, for several reasons, one…