To find out whose birthday is today from mysql data using php?

|
hotboy_178 2019-06-05 07:12:46
luv_php-3953.jpg
i need to make a tutorial for my client on how to use his administration account
EzioAudithore 2019-06-05 07:43:37
Can i have a cv model….?😅
i_am_ro0t 2019-06-05 08:20:04
We are not code sharing service
i_am_ro0t 2019-06-05 09:35:56
Banned user Nelson Davis for spamming.
rohit267 2019-06-05 12:36:39
Isko bhi ban kro, @i_am_ro0t
i_am_ro0t 2019-06-05 12:47:35
rohit267 2019-06-05 12:36:39
Isko bhi ban kro, @i_am_ro0t

Yass done

i_am_ro0t 2019-06-05 12:48:17
Banned Hacker boy karan for violating the group rules!
feature 2019-06-05 16:13:39
in PHP domDocument
i am trying to get image from an image link
i am able to get link via
`echo $output->item($i)->getAttribute(‘href’) `
But unable to figure how to Get image associated with the link. 🙁
feature 2019-06-05 16:43:17
feature 2019-06-05 16:13:39
in PHP domDocument
i am trying to get image from an image link
i am able to get link via
`echo $output->item($i)->getAttribute(‘href’) `
But unable to figure how to Get image associated with the link. 🙁

`$DOM->loadHTML($html);
$output = $DOM->getElementsByTagName(‘a’);
for($i=0; $i<$output->length; $i++){
if(preg_match(‘/id=/’,$output->item($i)->getAttribute(‘href’), $match)){
echo $output->item($i)->getAttribute(‘href’) . ” ” . $output->item($i)->nodeValue . ” ” . $output->item($i)->getAttribute(‘src’) . ‘</br> </br>’;
}
}`

i want to know what will be exact thing at getAttribute(‘src’)

i tried src and img but didnt work

saiks24 2019-06-05 16:48:18
in a – tag not set attr src
saiks24 2019-06-05 16:48:24
src in img tag
Kriti Agarwal 2019-06-05 16:49:48
To find out whose birthday is today from mysql data using php?
Kriti Agarwal 2019-06-05 16:49:58
Can u help me in this?
Mayank_theDevloper 2019-06-05 16:52:10
Kriti Agarwal 2019-06-05 16:49:48
To find out whose birthday is today from mysql data using php?

If I have assumed you seved birthdate( data type Date ) in database then simple select user query

Kriti Agarwal 2019-06-05 16:52:25
Yes
Kriti Agarwal 2019-06-05 16:52:42
But it will select year also if I directly fetch it
Kriti Agarwal 2019-06-05 16:53:05
Can i make a filter to compare only date and month and not year?
Mayank_theDevloper 2019-06-05 16:54:22
This link help you Kriti : https://stackoverflow.com/questions/3873649/php-birthday-check-today%C2%B4s-date

PHP: Birthday check today´s dateStack Overflow
I have user´s birthday stored in birthday as 1999-02-26.

How can I check if the birthday is today?

if(date(‘m-d’) == ..?

feature 2019-06-05 16:59:47
saiks24 2019-06-05 16:48:18
in a – tag not set attr src

but i am worried it will fatch all images on page so that will create mess and i will unable to relate them with link

Mayank_theDevloper 2019-06-05 17:04:06
feature 2019-06-05 16:59:47
but i am worried it will fatch all images on page so that will create mess and i will unable to relate them with link

Try something like this : @feature
$collection = $html->find(‘img[title=himom]’);

Mayank_theDevloper 2019-06-05 17:06:57
@feature : also see this
https://simplehtmldom.sourceforge.io/manual.htm

I think you need to use class name before fetch image tag

feature 2019-06-05 17:07:34
Mayank_theDevloper 2019-06-05 17:06:57
@feature : also see this
https://simplehtmldom.sourceforge.io/manual.htm

I think you need to use class name before fetch image tag

i tried that… it was using so much memory on my vps so decided to make my own

shaikahamed 2019-06-06 10:20:57
Hi rose
i_am_ro0t 2019-06-06 10:33:27
https://www.youtube.com/watch?v=ImtZ5yENzgE

https://t.me/luv_php

Laravel PHP Framework Tutorial – Full Course for Beginners (2019)YouTube
Learn Laravel 5.8 by creating an Instagram clone in this full tutorial course for beginners. Laravel is a free, open-source PHP web framework used for creating web applications.

💻Code: https://github.com/coderstape/freecodegram

⭐️Course Contents ⭐️
⌨️ (0:00) Introduction
⌨️ (1:14) What is Laravel?
⌨️ (2:07) Installing Laravel
⌨️ (5:30) First look at the project
⌨️ (7:15) Intro to php artisan
⌨️ (11:42) Generating login flow with make:auth
⌨️ (12:04) Setting Up the Front End with Node and NPM
⌨️ (20:00) Migrations and Setting Up SQLite
⌨️ (26:00) Designing the UI from Instagram
⌨️ (42:12) Adding Username to the Registration Flow
⌨️ (58:35) Creating the Profiles Controller
⌨️ (1:04:00) RESTful Resource Controller
⌨️ (1:09:10) Passing Data to the View
⌨️ (1:10:20) Adding the Profiles Mode, Migration and Table
⌨️ (1:17:30) Adding Eloquent Relationships
⌨️ (1:28:10) Fetching the Record From The Database
⌨️ (1:30:00) Adding Posts to the Database & Many To Many Relationship
⌨️ (2:04:24) Creating Through a Relationship
⌨️ (2:08:12) Uploading/Saving the Image to the Project
⌨️ (2:19:19) Resizing Images with Intervention Image PHP Library
⌨️ (2:27:42) Route Model Binding
⌨️ (2:31:48) Editing the Profile
⌨️ (2:46:46) Restricting/Authorizing Actions with a Model Policy
⌨️ (2:54:50) Editing the Profile Image
⌨️ (3:00:00) Automatically Creating A Profile Using Model Events
⌨️ (3:12:56) Default Profile Image
⌨️ (3:19:48) Follow/Unfollow Profiles Using a Vue.js Component
⌨️ (3:31:28) Many To Many Relationship
⌨️ (3:46:33) Calculating Followers Count and Following Count
⌨️ (3:48:55) Laravel Telescope
⌨️ (3:51:44) Showing Posts from Profiles The User Is Following
⌨️ (4:01:03) Pagination with Eloquent
⌨️ (4:03:25) N + 1 Problem & Solution
⌨️ (4:05:21) Make Use of Cache for Expensive Query
⌨️ (4:11:44) Sending Emails to New Registered Users
⌨️ (4:21:51) Wrapping Up
⌨️ (4:22:37) Closing Remarks & What’s Next In your Learning

🎥Course from Coder’s Tape. Check out their YouTube channel for more great Laravel tutorials: https://www.youtube.com/coderstape

Learn to code for free and get a developer job: https://www.freecodecamp.org

Read hundreds of articles on programming: https://medium.freecodecamp.org

hotboy_178 2019-06-06 10:34:27
im using the phpmail function but message is going into spam but not direct inbox
rohit267 2019-06-06 10:35:41
hotboy_178 2019-06-06 10:34:27
im using the phpmail function but message is going into spam but not direct inbox

smpt ?

rohit267 2019-06-06 10:35:59
Godaay or google?
hotboy_178 2019-06-06 10:40:07
rohit267 2019-06-06 10:35:41
smpt ?

Godaddy is sick

hotboy_178 2019-06-06 10:40:17
i tried many times with phpmailerit didnt work
hotboy_178 2019-06-06 10:40:21
they are crazy
hotboy_178 2019-06-06 10:40:34
i text thier FQA and they telling me bullshit
hotboy_178 2019-06-06 10:40:56
rohit267 2019-06-06 10:35:41
smpt ?

its smtp port and host:

AnDroidloper123 2019-06-06 13:06:25
are any freelance php developers here.?
2019-06-06 13:26:32
AnDroidloper123 2019-06-06 13:06:25
are any freelance php developers here.?

Yes

singhmohan 2019-06-06 13:27:56
AnDroidloper123 2019-06-06 13:06:25
are any freelance php developers here.?

Yes

AnDroidloper123 2019-06-06 13:30:31
IB me
kailash_singh 2019-06-06 14:44:21
AnDroidloper123 2019-06-06 13:06:25
are any freelance php developers here.?

Yup

Dev_AhmedYaseen 2019-06-06 15:33:32
why we use cookies in php ?
saiks24 2019-06-06 15:39:38
for storage needle data on client side
saiks24 2019-06-06 15:40:03
like: session_id and other
bluebit1 2019-06-06 15:45:12
saiks24 2019-06-06 15:40:03
like: session_id and other

How work session in login system

saiks24 2019-06-06 15:52:25
bluebit1 2019-06-06 15:45:12
How work session in login system

algoritm:
1) check user credentials
2) if all good – write session_id in storage (db)
3) login client

saiks24 2019-06-06 15:52:57
and before first step check that user is loggined
bluebit1 2019-06-06 16:32:38
saiks24 2019-06-06 15:52:25
algoritm:
1) check user credentials
2) if all good – write session_id in storage (db)
3) login client

ok..
If i need some hint.

bluebit1 2019-06-06 17:13:38
bluebit1 2019-06-06 16:32:38
ok..
If i need some hint.

Fragment of code about session

saiks24 2019-06-06 17:15:39
https://stackoverflow.com/questions/1243150/php-sessions-to-authenticate-user-on-login-form

php sessions to authenticate user on login formStack Overflow
I have the following code designed to begin a session and store username/password data, and if nothing is submitted, or no session data stored, redirect to a fail page.

session_start();
if(isset($…

bluebit1 2019-06-06 17:42:58
saiks24 2019-06-06 17:15:39
https://stackoverflow.com/questions/1243150/php-sessions-to-authenticate-user-on-login-form

Tnx bro..

OmShete 2019-06-06 19:14:57
AnDroidloper123 2019-06-06 13:06:25
are any freelance php developers here.?

Please ping me

Code-Front …/ 2019-06-06 20:23:11
How to get every month data from database
Code-Front …/ 2019-06-06 20:25:25
For example: I have data for month June 1 to 30 after that for July
|