Does a link keep its power if I make it with php

aidenhera

BANNED
Joined
Nov 30, 2016
Messages
3,059
Reaction score
915
index.php
<?php include 'filewithlink.php'; ?>


filewithlink.php
<?php echo "<a href=\"http://mydomainisthebest.com\">link</a>"; ?>


or that will be weaker/useless/spam signal?
 
I don’t think it will make any difference - php is processed server side. Once google, or any other client, requests that page, they’ll get the html output only.
 
PHP code executes on the server before the webpage is ever sent to the client. From the client's end (which is what Googlebot sees), there's no way to tell if a link was generated by PHP or if it was put there directly.

so Googlebot doesnt see what was the domain I included file from? like if I included a file like that:

<?php include 'http://MYBESTDOMAIN.com/files/filewithlink.php'; ?>

on 3 of my sites


will Googlebot see that they all have the same domain/url in source code?


i think it will see, :(
 
so Googlebot doesnt see what was the domain I included file from? like if I included a file like that:

<?php include 'http://MYBESTDOMAIN.com/files/filewithlink.php'; ?>

on 3 of my sites


will Googlebot see that they all have the same domain/url in source code?


i think it will see, :(

These two files and identical as far as the end user (Gogglebot) can tell:

Code:
<?
  echo "<p>Hello</p>";
?>

And

Code:
<p>Hello</p>

The first one is converted to HTML before it is ever sent to the user. Google can't see the source code at all.
 
Googlebot can only see the same as everyone else, i.e. the HTML source of the page. It doesn't have magic powers to see what is happening server side.
 
Did you see any php elements when you inspect the page? That`s what google bot sees, HTML output.
 
PHP code executes on the server before the webpage is ever sent to the client. From the client's end (which is what Googlebot sees), there's no way to tell if a link was generated by PHP or if it was put there directly.
You're a true master and good father to me Grahew <3 I'm proud to be your son.
 
wordpress runs under php...and links work pretty well on it.
but yeah, for a spider, a link is a link; if it works for you, it works for the spider; there are B movies, but no B links.
 
Last edited:
A bunch of people already told you that Google does NOT see it.
And even so, afterwards in the same thread you proceed to ask the same question yet again and brazenly state that you "think" google will see it.
What the fuck is wrong with you?

everything ! but it was not same question dud

uM2Y1Ji



my second post in this thread asked DIFFERENT thing.but anyway i checked it on my own so its ok.


You must be really stupid mate , to ask this kind of questions!

nope i have 170 IQ i checked on a website and sent sms text to get my iq on phone
 
everything ! but it was not same question dud

uM2Y1Ji



my second post in this thread asked DIFFERENT thing.but anyway i checked it on my own so its ok.




nope i have 170 IQ i checked on a website and sent sms text to get my iq on phone

If you include a page then it will show whatever was on that page, no external visitor (search engines included) will ever see any of your PHP as that is executed on the server before the visitor (search engines included) ever gets a chance to see it.

Providing your PHP is written validly it will never be displayed in the content that a visitor (search engines included) will ever see.

Regarding your last sentence I do hope, for your sake, that it was a joke. I have done multiple IQ tests that claim I have an IQ of 200 so they should not be taken too seriously.
 
If you include a page then it will show whatever was on that page, no external visitor (search engines included) will ever see any of your PHP as that is executed on the server before the visitor (search engines included) ever gets a chance to see it.

Providing your PHP is written validly it will never be displayed in the content that a visitor (search engines included) will ever see.

Regarding your last sentence I do hope, for your sake, that it was a joke. I have done multiple IQ tests that claim I have an IQ of 200 so they should not be taken too seriously.

well i see in "open source" the link i included php file from.
 
You must be really stupid mate , to ask this kind of questions!

What kind of POWER user are you ? People suppose to learn from your posts !

I will pay 100$ if someone will remove his POWER thing under the name
 
You must be really stupid mate , to ask this kind of questions!
You must be really stupid mate , to ask this kind of questions!
It's a reasonable question. It's not exactly obvious how PHP works if you don't work with it directly regularly.

Considering that half of the questions in your post history could have been easily found through a Google search, it seems like a bad idea to pick fights with people on an Internet forum.

You're a true master and good father to me Grahew <3 I'm proud to be your son.
Look at all the sexy new dogs here I want to sex them all.
 
Back
Top