How to create mailserver?

|
Krish9773 2021-01-14 10:52:45
<div class=”pro_details_right”>
<select id=”size”>
<option value=”” selected=”selected”>
<center>Select</center>
</option>
<!– <option value=”” selected=”selected”> Size</option> –>
<?php
$s=1;
while($res_size=fetchAssoc($select_size))
{
$select_size_master=exeQuery(“SELECT * FROM “.TABLE_SIZE_MASTER.” where id='”.$res_size[‘size_id’].”‘ “);
$fetch_size_data=fetchAssoc($select_size_master);
?>
<option data-price=” data-dprice=’0.00′ data-dcolor=’40’ ><?=$fetch_size_data[‘size’];?></option>
<?php
$s++;
}
?>
</select>
</div>
Krish9773 2021-01-14 10:52:56
This is my select option
Krish9773 2021-01-14 10:53:15
<div class=”pro_cart_box”>
<a href=”javascript:void(0);” class=”cart_link”>
<div class=”pro_cart_text” onclick=”addtocart1(‘<?=$res_id[‘product_id’] ?>’)”>Add to cart <img src=”<?=base_url().’/flipkart/’.”images/loader/cart.png”?>” class=”cart_image” /></div>
</a>
</div>
Krish9773 2021-01-14 10:53:26
This is my add to cart button
Krish9773 2021-01-14 10:54:03
I use required attrivute before but not working then i remove that code
M Sajid Imran 2021-01-14 11:51:05
Wait brother I will tell u later…I m little bit bzzi….
kasimmk 2021-01-14 12:04:53
I am using amazon ec2 for hosting. How to create mailserver?
2021-01-14 14:16:17
Krish9773 2021-01-14 10:54:03
I use required attrivute before but not working then i remove that code

Come ib I think I can help you ☝️

Krish9773 2021-01-14 14:17:16
Btao please
2021-01-14 14:32:44
Krish9773 2021-01-14 10:50:05
But not working

I wrote a code for Withdrawl. It should store the value in Database but On main server code is running fine but after migrating it is not working.

2021-01-14 14:44:27
🤗Is their any way to run a script before every page load in server without including it in code of page 🤔

Is it possible 🥺

bayunoer 2021-01-14 15:26:37
Array
(
[0] => Array
(
[0] => 1
[1] => 2
)

[1] => Array
(
[0] => 2
[1] => 3
)

[2] => Array
(
[0] => 3
[1] => 8
)

[3] => Array
(
[0] => 1
[1] => 6
)

[4] => Array
(
[0] => 2
[1] => 3
)

[5] => Array
(
[0] => 3
[1] => 2
)

)

Saya ingin membandingkan nilai pada index[1] berdasarkan key index[0] yang sama.. jika nilai lebih besar maka akan mencetak nilai yg pertama jika lebih kecil akan mencetak terakhir adakah solusinya..

Hasilnya ingin seperti ini

1,2
1,6
Lebih besar 6

3,8
3,2
Lebih besar 8..

RiteshBhavsar 2021-01-14 17:27:41
Sorry don’t have
CRUD_Mehra 2021-01-14 17:28:14
RiteshBhavsar 2021-01-14 17:27:41
Sorry don’t have

Okay, Anyone 🥺🥺

khanbozkurt 2021-01-14 18:17:45
Selam arkadaşalar. Instagramdaki bi hastagin kaç gönderi aldığını ve gönderilerin kaç beğeni aldığını veri olarak nasıl çekebilirim?
fredkeyster 2021-01-14 21:03:46
khanbozkurt 2021-01-14 18:17:45
Selam arkadaşalar. Instagramdaki bi hastagin kaç gönderi aldığını ve gönderilerin kaç beğeni aldığını veri olarak nasıl çekebilirim?

In english, please…

fredkeyster 2021-01-14 21:07:30
CRUD_Mehra 2021-01-14 17:28:14
Okay, Anyone 🥺🥺

phpsocket io

fredkeyster 2021-01-14 21:08:40
codeslide-23122.jpg
Exemple…
kevinkan_22 2021-01-15 02:10:52
Undefined variable??
साधु यादव 2021-01-15 02:29:18
2021-01-14 14:44:27
🤗Is their any way to run a script before every page load in server without including it in code of page 🤔

Is it possible 🥺

Refer php.ini configuration

Put it in its own file and set the auto_prepend_file configuration in the php.ini / .htaccess file to point to it.

CRUD_Mehra 2021-01-15 04:07:54
fredkeyster 2021-01-14 21:07:30
phpsocket io

Yupp ….

CRUD_Mehra 2021-01-15 04:08:07
fredkeyster 2021-01-14 21:08:40
Exemple…

Okay thanks….

bayunoer 2021-01-15 04:08:39
How to fix this
<?php
//php 7.3.0
$array= array();
array_push($array,array(1,2));
array_push($array,array(2,3));
array_push($array,array(3,8));

$array2 = array();
array_push($array2,array(1,6));
array_push($array2,array(2,3));
array_push($array2,array(3,2));

$array3 = array();
array_push($array3,array(1,”enm”));
array_push($array3,array(3,”ggg”));

print_r($array3);

$join = array_merge($array,$array2);

foreach($array2 as $key)
{
print(array3);
if(in_array($key[0],$array3))
{
print($key[0]);
}
}
?>

This show

Array
(
[0] => Array
(
[0] => 1
[1] => enm
)

[1] => Array
(
[0] => 3
[1] => ggg
)

)
array3array3array3PHP Warning: Use of undefined constant array3 – assumed ‘array3’ (this will throw an Error in a future version of PHP) in source_file.php on line 27
PHP Warning: Use of undefined constant array3 – assumed ‘array3’ (this will throw an Error in a future version of PHP) in source_file.php on line 27
PHP Warning: Use of undefined constant array3 – assumed ‘array3’ (this will throw an Error in a future version of PHP) in source_file.php on line 27
Process finished.

bayunoer 2021-01-15 04:10:08
codeslide-23144.jpg

bayunoer 2021-01-15 04:10:08
codeslide-23143.jpg

bayunoer 2021-01-15 04:10:24
How to fix this .. ?
CRUD_Mehra 2021-01-15 04:10:53
Anybody know about Ratchet socket ???
RiteshBhavsar 2021-01-15 06:42:52
bayunoer 2021-01-15 04:10:08

Line 27

RiteshBhavsar 2021-01-15 06:43:14
print($array3)
kishor10d 2021-01-15 08:22:07
CRUD_Mehra 2021-01-15 04:10:53
Anybody know about Ratchet socket ???

Something

CRUD_Mehra 2021-01-15 08:23:36
kishor10d 2021-01-15 08:22:07
Something

Please can you share any type of information which help to integrate sockets.

2021-01-15 08:36:04
साधु यादव 2021-01-15 02:29:18
Refer php.ini configuration

Put it in its own file and set the auto_prepend_file configuration in the php.ini / .htaccess file to point to it.

👍 Thanks

kishor10d 2021-01-15 10:59:31
CRUD_Mehra 2021-01-15 08:23:36
Please can you share any type of information which help to integrate sockets.

I used it for demonstration purpose bsck in 2015

kishor10d 2021-01-15 10:59:52
May be lot of changes happen in last 4 years.
kishor10d 2021-01-15 11:02:18
I need realtime commenting system in my AngularJS app back then. That time I integrate this in CodeIgniter app.

But according to my experience back then, websockets are really tough to awake all the time, you need to assign them separate port, run as a service all time and need to ping them in regular interval. If found idle, websocket stop the service.

|