Check the DB that you query:
$select="select * from news where Name like '%$get%'";
$run=mysqli_query($con, $select);
...
while($row=mysqli_fetch_array($run)){
...
$text=$row['Text'];
...
The error is saying that the query returned no column called "text" - which means your table
news
does not have a column of that name to return.