☰
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
13.8K
All Categories
0
Incidents
153
Node JS client
40
Go client
793
.Net API client
378
Kite Publisher
537
.Net / VBA / Excel (3rd party)
457
Algorithms and Strategies
993
Java client
1.1K
API clients
404
PHP client
4K
Python client
346
Mobile and Desktop apps
1.4K
Market data (WebSockets)
3.3K
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.