Topic : Website

Informasi seputar website, blog wordpress + google adsense, dibahas secara detail mendalam berdasarkan realita nyata.

POST Ajax Jquery Form Data Json

standard function format ajax jquery $.ajax({ method: “POST”, url: url, data: data, contenType: Type, success: function(){}, error: function(){} }); for example html form send data […]

PHP remove all symbols from string

How to remove all symbol to string only in PHP, use preg_replace: preg_replace(‘/[^\p{L}\p{N}\s]/u’,”, $x) Sample remove all symbol end characters: <?php $x=’SSS abc saple sym@ […]