Yacine Yacine gedeeld post  
5 jr

Ali Saeed is het gevoel Koel
5 jr

.


كم تملكون من نقاط #radiation ؟

احتاج شخص يعلمني البرمجة على الهاتف
شكرا Ali Saeed
#radiation

#retail سؤال ؟

هل مرا طورت تطبيق او جاي تشتغل علي او عندك فكرة التطبيق الي راح تسوي ان شاءالله

انا عن نفسي لا راح اتعلم عن قريب ان شاءالله بس عندي فكره لتطبيق ان شاءالله يكون مفيد ❤


#irrigation الله جميعآ

5 jr - Vertalen

تفاعل
Ali Saeed
#radiation

image
5 jr - Vertalen

يتم حذف اسرائيل من الوجود 🤣😂😎

image
MAS2016S Heeft zijn profielfoto gewijzigd
5 jr

image

سهمكم ❤❤🔥

image
5 jr - Vertalen

#multiple
#coal

image
Ali Saeed is het gevoel Koel
5 jr - Vertalen

.


كم تملكون من نقاط #radiation ؟

طريقة انشاء نظام بحث عن كلامات بستخدام php , ابسط طريقة ممكنه !

<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<?php
$text = "
The php language is the most popular and easy-to-use language,
with 78% of sites using it in some way!
<br>
Python also ranks first in terms of usage, being easy and safer!";
echo $text;
?>
<hr>
<form action="" method="post">
<input type="text" name="word_s" placeholder="Search The word">
<button type="submit" name="search">Search</button>
</form>
<hr>
<?php
if(isset($_POST['search'])){
$programming_we_search_for = $_POST['word_s'];
$delet_space = str_ireplace(" ", "", $programming_we_search_for);
$explode_text = explode(" ", $text);
$search = array_search($delet_space,$explode_text);
if($search == true){
echo "($programming_we_search_for) was mentioned !";
}else {
echo "$programming_we_search_for Not mentioned !";
}
}
?>
</body>
</html>

image