# insert-html-snippet/1.0.1/admin/ajax-backlink.php

Insert Html Snippet, version 1.0.1. 14 lines.

- Page: https://pluginprobe.com/plugins/insert-html-snippet/1.0.1/code/admin/ajax-backlink.php
- Raw: https://pluginprobe.com/plugins/insert-html-snippet/1.0.1/raw/admin/ajax-backlink.php
- Modified: 2013-07-15T07:45:12+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/insert-html-snippet/1.0.1/code/admin/ajax-backlink.php#L10-L20`.

```php
<?php
add_action('wp_ajax_ajax_backlink', 'xyz_ihs_ajax_backlink');
function xyz_ihs_ajax_backlink() {

	global $wpdb;
	
	if($_POST){
		update_option('xyz_credit_link','ihs');
		
	}
}


?>
```
