You want projects or topics?

|
raj_eswar 2019-08-18 18:04:17
Hi
I want to read a pdf file in php which may be in different language

Is there any possibility to read and print it

rohit267 2019-08-19 03:15:34
raj_eswar 2019-08-18 18:04:17
Hi
I want to read a pdf file in php which may be in different language

Is there any possibility to read and print it

if fread provide a way to declare encoding type as pdf has different encoding than utf-8

Dev++ 2019-08-19 07:51:09
hello all please send me laravel demo project for learning
rohit267 2019-08-19 08:51:14
Dev++ 2019-08-19 07:51:09
hello all please send me laravel demo project for learning

google

2019-08-19 09:30:35
Hy
kailash_singh 2019-08-19 10:01:33
Dev++ 2019-08-19 07:51:09
hello all please send me laravel demo project for learning

Search on utube elevenstech

2019-08-19 10:54:00
Konsi app bro
Dileep Panchal 2019-08-19 10:59:32
Sorry no knowledge about refer script
rohit267 2019-08-19 12:07:33
they decompile their apps source code, hack api keys, get the api address and do that
rohit267 2019-08-19 12:07:40
it is illigal
rohit267 2019-08-19 12:09:30
their is no refer script, they just make a call to the apps api address with proper parameters
Dev++ 2019-08-19 12:09:43
kailash_singh 2019-08-19 10:01:33
Search on utube elevenstech

thanks bro

2019-08-19 14:52:40
Dev++ 2019-08-19 07:51:09
hello all please send me laravel demo project for learning

Laravel 5.8 – YouTubeYouTube
Himanshuftp 2019-08-19 16:42:19
Thnku @MissRose_bot
2019-08-19 16:53:25
Himanshuftp 2019-08-19 16:42:19
Thnku @MissRose_bot

Its a BOT

Himanshuftp 2019-08-19 16:54:05
I know
2019-08-19 17:28:51
Himanshuftp 2019-08-19 16:54:05
I know

Then its Okay

rohit267 2019-08-19 19:26:49
Himanshuftp 2019-08-19 16:54:05
I know

no u dont

pranit31 2019-08-19 20:09:37
raj_eswar 2019-08-18 18:04:17
Hi
I want to read a pdf file in php which may be in different language

Is there any possibility to read and print it

Search file_get_content.. I think it will work

raj_eswar 2019-08-19 20:14:11
pranit31 2019-08-19 20:09:37
Search file_get_content.. I think it will work

I will try it thanks for reply

rohit267 2019-08-19 21:45:27
learn it
2019-08-20 06:42:43
Anybody have ccAvenue payment gateway working code
rohit267 2019-08-20 10:51:04
the channel wala
rohit267 2019-08-20 10:51:51
don’t make me block you
barYNA1 2019-08-20 12:26:04
Any one who help me how to use bootstrap file in php
barYNA1 2019-08-20 12:28:10
Please help ne
barYNA1 2019-08-20 12:30:31
Yes
barYNA1 2019-08-20 12:30:46
Tou didn’t get my idea how to use bootstraph file
Mayank_theDevloper 2019-08-20 12:32:04
barYNA1 2019-08-20 12:30:46
Tou didn’t get my idea how to use bootstraph file

Please explain more what you done or what not working

2019-08-20 13:45:25
Any vacancy in mumbai…..
2019-08-20 13:45:47
For design and development both
Mayank_theDevloper 2019-08-20 13:49:56
Himanshu also look here IT Engg Jobs
https://t.me/itengg

IT Engg JobsTelegram
Join us on Facebook: https://www.facebook.com/groups/2012253798994416/

Join us on WhatsApp: https://chat.whatsapp.com/Jyo2anKWj6x6CT3hjCs8mE

Aaamees 2019-08-20 16:03:50
Project topics in PHP for final year
shabbir_fakira 2019-08-20 16:23:22
You want projects or topics?
shabbir_fakira 2019-08-20 16:23:27
Flower shop
rohit267 2019-08-20 16:49:55
learn backend, learn android, learn http, little hacking, and i know it will take you ages
JimboReddJones 2019-08-20 17:37:32
public function sell()
{

if ($this->session->userdata(‘isLogIn’) && $this->session->userdata(‘user_id’)){

$coin_symbol = explode(‘_’, $this->input->post(‘market’, TRUE));
$market_symbol = $this->input->post(‘market’, TRUE);
$rate = $this->input->post(‘sellpricing’, TRUE);
$qty = $this->input->post(‘sellamount’, TRUE);
$user_id = $this->session->userdata(‘user_id’);

//Check SELL fees
$fees = $this->web_model->checkFees(‘SELL’, $coin_symbol[0]);
if ($fees) {
$fees_amount = ($rate*$qty*$fees->fees)/100;
$sellfees = $fees->fees;

}else{
$fees_amount = 0;
$sellfees = 0;

}

//BUY fees
$buyerfees = $this->web_model->checkFees(‘BUY’, $coin_symbol[1]);
if ($buyerfees) {
$buyfees = $buyerfees->fees;

}else{
$buyfees = 0;

}

$amount_withoutfees = $rate * $qty;
$amount_withfees = $amount_withoutfees + $fees_amount;

JimboReddJones 2019-08-20 17:37:42
JimboReddJones 2019-08-20 17:37:32
public function sell()
{

if ($this->session->userdata(‘isLogIn’) && $this->session->userdata(‘user_id’)){

$coin_symbol = explode(‘_’, $this->input->post(‘market’, TRUE));
$market_symbol = $this->input->post(‘market’, TRUE);
$rate = $this->input->post(‘sellpricing’, TRUE);
$qty = $this->input->post(‘sellamount’, TRUE);
$user_id = $this->session->userdata(‘user_id’);

//Check SELL fees
$fees = $this->web_model->checkFees(‘SELL’, $coin_symbol[0]);
if ($fees) {
$fees_amount = ($rate*$qty*$fees->fees)/100;
$sellfees = $fees->fees;

}else{
$fees_amount = 0;
$sellfees = 0;

}

//BUY fees
$buyerfees = $this->web_model->checkFees(‘BUY’, $coin_symbol[1]);
if ($buyerfees) {
$buyfees = $buyerfees->fees;

}else{
$buyfees = 0;

}

$amount_withoutfees = $rate * $qty;
$amount_withfees = $amount_withoutfees + $fees_amount;

Can someone help me here

JimboReddJones 2019-08-20 17:38:07
i am able to get a negative balace, for instance i have 10 apples and i can sell 100
JimboReddJones 2019-08-20 17:42:32
no clue where this goes wrong
JimboReddJones 2019-08-20 17:47:50
maybe better to put the entire funcion in a txt file
JimboReddJones 2019-08-20 17:47:57
I hope you guys can help me out
shabbir_fakira 2019-08-20 18:43:41
Yess
2019-08-20 20:58:48
Hello guys please any tell me how to send sms through pho
2019-08-20 20:59:00
After registration it should send sms to user
shabbir_fakira 2019-08-20 21:29:03
2019-08-20 20:59:00
After registration it should send sms to user

You need to buy SMS api

shabbir_fakira 2019-08-20 21:29:20
And call that API using curl
2019-08-20 21:30:34
Ohk but how should i implement in php
2019-08-20 21:30:41
Ohk
2019-08-20 21:30:57
Thanks bro
|