☰
Login
Signup
Home
›
PHP client
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Register
Categories
Recent Discussions
Activity
Categories
14.1K
All Categories
0
Incidents
158
Node JS client
43
Go client
801
.Net API client
386
Kite Publisher
538
.Net / VBA / Excel (3rd party)
465
Algorithms and Strategies
1K
Java client
1.1K
API clients
408
PHP client
4.1K
Python client
349
Mobile and Desktop apps
1.4K
Market data (WebSockets)
3.4K
General
In this Discussion
January 2018
tonystark
January 2018
sushanthrd
Order Placing Again And Again
sushanthrd
January 2018
in
PHP client
While I am running my Code
<?php
//include_once ('include/db.php');
require_once('include/db.php');
require_once('include/function.php');
require_once('include/kiteconnect.php');
$access_token ="xxxxxxxxxxxxxxxxxxxxxxx";
$kite = new KiteConnect("xxxxxxxxxxxxxxxxxxxxx");
$kite->setAccessToken($access_token);
$order_id = $kite->orderPlace([
"tradingsymbol" => "BHEL",
"exchange" => "NSE",
"quantity" => 1,
"transaction_type" => "BUY",
"order_type" => "MARKET",
"product" => "NRML"
], "regular");
echo "Order id is ".$order_id;
?>
Again.jpg
184.6K
sushanthrd
January 2018
Order Placing Again And Again Why?
tonystark
January 2018
@sushanthrd
Is this code present in your postback URL PHP script?
sushanthrd
January 2018
@tonystark
Thanks Bro postback URL have Same Code. Thanks for solve my Prob thank you very much.
This discussion has been closed.