β prev | next β
Siberfx 2020-07-19 00:30:40
if no, so do it :))
2020-07-19 00:31:08
Put i dont find something
2020-07-19 00:31:26
Whatever i will do that again π
Siberfx 2020-07-19 00:31:28
But its not useful also thats what i mean
2020-07-19 00:32:27
Thanks brother
Siberfx 2020-07-19 00:32:38
its posible by JavaScript, i remember
2020-07-19 00:33:33
I try with java but i didnt find any thing
2020-07-19 00:33:53
JavaScript sorry
2020-07-19 00:34:07
Java or c can make that
Siberfx 2020-07-19 00:34:49
javascript could.
vjk 2020-07-19 02:26:19
Dear developers
vjk 2020-07-19 02:26:33
i have a short freelancers laravel project
vjk 2020-07-19 02:26:44
itβs a part of a hackathon
vjk 2020-07-19 02:26:56
anybody interested can ping me
vjk 2020-07-19 02:27:25
Itβs a canadian project
Siberfx 2020-07-19 02:27:54
wow
Siberfx 2020-07-19 02:28:04
bot catches only usefull links, but not the damn spammers π
vjk 2020-07-19 02:28:37
strange i wanted to share the group invite link
vjk 2020-07-19 02:28:53
this is laravel group so thought of sharing it here
vjk 2020-07-19 02:30:04
anyways if anybody is interested, Please ping me , we are in process of acquiring a long term government project involving php and laravel.
vjk 2020-07-19 02:30:16
thanks again , have a good day
Siberfx 2020-07-19 02:30:54
good luck by finding them vj π
Deen 2020-07-19 02:43:27
Hi,
I’m a learning dev who is new to this group and I was wondering if anyone could help me with some challenges I’m facing with PHP.
Perhaps in a private chat?
2020-07-19 04:50:58
Deen 2020-07-19 02:43:27
Hi,
I’m a learning dev who is new to this group and I was wondering if anyone could help me with some challenges I’m facing with PHP.
Perhaps in a private chat?
What challenges ?
yeapes 2020-07-19 06:24:36
how to add sitemap without any package ? just seems general site.
ongray 2020-07-19 06:43:39
Have anyone done or seen project on Laravel/Web + Asterisk communication. please share, thank you.
yeapes 2020-07-19 06:51:36
for this purpose , I have created sitemap xml file from www[.]xml-sitemaps[.]com, now what i’m doing?
Bittle 2020-07-19 07:10:12
Hi! I have a ratchet websocket running in example.com:8009. Is there a way to broadcast to the ratchet websocket and send messages to all connected users from laravel (anywhere in php code)?
itechsoft 2020-07-19 08:38:14
Hello! I need help on how to create a related post under my blogs post.
Please if there’s any references website that you guys can suggest for me learn.
And also I need laravel comments box to work too.
2020-07-19 08:41:34
yeapes 2020-07-19 06:51:36
for this purpose , I have created sitemap xml file from www[.]xml-sitemaps[.]com, now what i’m doing?
Move sitemap file to /public
2020-07-19 08:47:09
itechsoft 2020-07-19 08:38:14
Hello! I need help on how to create a related post under my blogs post.
Please if there’s any references website that you guys can suggest for me learn.
And also I need laravel comments box to work too.
May be you can try disqus plugin
Cleo_hacker 2020-07-19 10:55:28
Cleo_hacker 2020-07-19 10:55:38
Hello guys, kindly help me out here. I’m trying to do this in OOP way and I’m kinda stuck. I want when the page submits, it submits to a method inside a class. Take a look at the screenshot. Any help is appreciated. Thank you.
flyingdragons 2020-07-19 10:59:06
itechsoft 2020-07-19 08:38:14
Hello! I need help on how to create a related post under my blogs post.
Please if there’s any references website that you guys can suggest for me learn.
And also I need laravel comments box to work too.
I have written simple article on Disqus integration with Laravel you can refer it
flyingdragons 2020-07-19 10:59:17
https://stackcoder.in/posts/comment-and-like-system-using-disqus
Comment And Like System Using Disqus | StackCoder –
StackCoderIf you have any plans to quickly add Comment & Like system with your blog, article, website then this by far the best one and very simple to integrate with Disqus.
Cleo_hacker 2020-07-19 11:00:42
Thank you @Hakari, Let me take a look
flyingdragons 2020-07-19 11:01:10
Cleo_hacker 2020-07-19 10:55:28
Are you using any framework? From you code API class is extending from DB so guessing it
Cleo_hacker 2020-07-19 11:01:33
No, it’s only php raw
flyingdragons 2020-07-19 11:01:49
If thats the case you cant call it directly
Cleo_hacker 2020-07-19 11:01:58
I wanted to imitate like Larvel , not really the same way
flyingdragons 2020-07-19 11:02:10
First you need to redirect to some other page. There you can use this calss method with the help of object
Cleo_hacker 2020-07-19 11:02:38
flyingdragons 2020-07-19 11:01:49
If thats the case you cant call it directly
Okay, i understand that, but how can do it or structure it in OOP form
flyingdragons 2020-07-19 11:03:07
Just a sec. I will write and show you the code
Cleo_hacker 2020-07-19 11:03:33
flyingdragons 2020-07-19 11:03:07
Just a sec. I will write and show you the code
Thank you, i will highly appreciate
flyingdragons 2020-07-19 11:06:36
<form method=”pos” action=”yourfile.php” enctype=”multipart/form-data”>
yourfile.php
————–
<?php
if($_SERVER[‘REQUEST_METHOD’] == ‘POST’){
/** DO YOUR FORM VALIDATION HERE */
$api = new API();
/** Here you need to post all your variables , but you can make it much more beautiful*/
$api->store($_POST);
}
flyingdragons 2020-07-19 11:07:10
Cleo_hacker 2020-07-19 11:03:33
Thank you, i will highly appreciate
Basically you need to use some wrapper classes instead of writing switch cases
flyingdragons 2020-07-19 11:08:22
You can use the following Database wrapper class
β prev | next β