diff --git a/index.php b/index.php
index c5aa35e..67d3fec 100644
--- a/index.php
+++ b/index.php
@@ -36,8 +36,8 @@
$result_snippet = explode('">', $result_snippet)[1];
$result_snippet = explode('', $result_snippet)[0];
- $final_result_html .= "
" . $result_title[0] . "
"
- . $result_display_url . "
" . $result_snippet . "
";
+ $final_result_html .= '
' . $result_title[0] . '
'
+ . $result_display_url . '
' . $result_snippet . '
';
}
}
}
diff --git a/read.php b/read.php
index 063f0b5..d99469d 100644
--- a/read.php
+++ b/read.php
@@ -140,14 +140,14 @@ function clean_str($str) {
//we can only do png and jpg
if (strpos($image_url, ".jpg") || strpos($image_url, ".jpeg") || strpos($image_url, ".png") === true) {
$img_num++;
- $imgline_html .= " [$img_num] ";
+ $imgline_html .= ' [$img_num] ';
}
endforeach;
if($img_num>0) {
echo $imgline_html ;
}
?>
- " . $error_text . ""; } ?>
+ ' . $error_text . ''; } ?>