Garip bir sorunum var yardımcı olursanız sevinirim (Muhtemelen PHP'de acemi olduğum için bana garip geliyordur

PHP 5.6 Sürümüne sahibim ve aşağıdaki şekilde mysql bağlantısı yapıyorum ;
# For the configuration of Database
$db_hostname="localhost";
$db_username="root";
$db_password="ZcS-w1w";
$db_name="my_database";
$connection=mysql_connect($db_hostname,$db_username,$db_password) or die("Connection Problem");
$select_db=mysql_select_db($db_name,$connection) or die("Could not Select Database");Ama aşağıdaki gibi bir hata alıyorum ;[06-Dec-2019 17:00:32 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/app/public_html/videos/api.php on line 11 [06-Dec-2019 17:00:32 UTC] PHP Notice: Undefined index: wallpaper_title in /home/app/public_html/videos/api.php on line 35 [06-Dec-2019 17:00:32 UTC] PHP Notice: Undefined index: anchor_name in /home/app/public_html/videos/api.php on line 36 [06-Dec-2019 17:00:32 UTC] PHP Notice: Undefined index: email in /home/app/public_html/videos/api.php on line 37 [06-Dec-2019 17:00:32 UTC] PHP Notice: Undefined index: password in /home/app/public_html/videos/api.php on line 38 [06-Dec-2019 17:00:32 UTC] PHP Notice: Undefined index: article_id in /home/app/public_html/videos/api.php on line 40 [06-Dec-2019 17:00:32 UTC] PHP Notice: Undefined index: user_id in /home/app/public_html/videos/api.php on line 41 [06-Dec-2019 17:00:32 UTC] PHP Notice: Undefined index: favourite_id in /home/app/public_html/videos/api.php on line 42 [06-Dec-2019 17:00:32 UTC] PHP Notice: Undefined index: name in /home/app/public_html/videos/api.php on line 43 [06-Dec-2019 17:00:32 UTC] PHP Notice: Undefined index: comment in /home/app/public_html/videos/api.php on line 44 [06-Dec-2019 17:00:32 UTC] PHP Notice: Undefined index: date in /home/app/public_html/videos/api.php on line 45 [06-Dec-2019 17:00:32 UTC] PHP Notice: Undefined index: first_name in /home/app/public_html/videos/api.php on line 47 [06-Dec-2019 17:00:32 UTC] PHP Notice: Undefined index: last_name in /home/app/public_html/videos/api.php on line 48 [06-Dec-2019 17:00:32 UTC] PHP Notice: Undefined index: picture in /home/app/public_html/videos/api.php on line 49 [06-Dec-2019 17:00:32 UTC] PHP Notice: Undefined index: phone in /home/app/public_html/videos/api.php on line 50 [06-Dec-2019 17:00:32 UTC] PHP Notice: Undefined index: password in /home/app/public_html/videos/api.php on line 51 [06-Dec-2019 17:00:32 UTC] PHP Notice: Undefined index: status in /home/app/public_html/videos/api.php on line 52 [06-Dec-2019 17:00:32 UTC] PHP Notice: Undefined index: required in /home/app/public_html/videos/api.php on line 53 [06-Dec-2019 17:00:32 UTC] PHP Notice: Undefined index: search_item in /home/app/public_html/videos/api.php on line 55error_reporting(0); Kodu ile bu hataları görmezden gelebiliyorum ancak sistem sağlıklı çalışmadığı için artık bu sorunu çözmek istiyorum. Sizce nerede hata yapıyorum.
İyi forumlar