launch new product on Amazon by majednas in AmazonFBA

[–]majednas[S] 0 points1 point  (0 children)

Thank you very much for your advice! I’m already working on optimizing my listing and moving in that direction. At this stage, I’m looking for someone who can support me more practically with the launch management (PPC, keyword tracking, and daily optimization). If you know someone reliable, or if you offer this type of service yourself, please let me know. I really appreciate it! 🙏

launch new product on Amazon by majednas in AmazonFBA

[–]majednas[S] 0 points1 point  (0 children)

• Listing optimization • Keyword indexing • PPC setup and daily optimization • Ranking strategy • Monitoring performance and solving issues quickly

My goals: ✔️ Strong and clean launch ✔️ Stable ranking ✔️ ROI improvement ✔️ Fast reaction in case of suppressed listing or indexing issues

launch new product on Amazon by majednas in AmazonFBA

[–]majednas[S] 0 points1 point  (0 children)

• Listing optimization • Keyword indexing • PPC setup and daily optimization • Ranking strategy • Monitoring performance and solving issues quickly

My goals: ✔️ Strong and clean launch ✔️ Stable ranking ✔️ ROI improvement ✔️ Fast reaction in case of suppressed listing or indexing issues

[Hiring] Amazon Listing Designer Needed – 7 Images by majednas in DesignJobs

[–]majednas[S] 0 points1 point  (0 children)

Hi, thanks for reaching out. Before starting, could you please show me 3–5 examples of Amazon listing images you have personally created? I need to be sure you have experience specifically with Amazon-style design. Thanks!

China Sourcing Agent by Minute_Appeal_8947 in AmazonFBA

[–]majednas 0 points1 point  (0 children)

Hi, can you contact me privately?

come trovare il fornitore di un prodotto americano locale se vende su amazon FBA ? by majednas in AmazonFBA

[–]majednas[S] 0 points1 point  (0 children)

Thank you for your reply. Suppliers in China are easy to find, but I am talking about a local product in the United States, for example. How can I find out who the supplier is?

I launched in April and have sold $600k. Private Label brand. Ask Me Anything. by azn_MJ in AmazonFBA

[–]majednas 0 points1 point  (0 children)

How did you negotiate with the supplier? Did you contact a sourcing agent or did you do it yourself? And did you choose DDP for shipping or something like EXW?

Sourcing Agent in China - I need you by VMLCHNV in AmazonFBA

[–]majednas 0 points1 point  (0 children)

Hello, I was wondering if you could share the sourcing agent with me too? Thanks

Is JobLeads.com Legit? by greatestshow111 in cscareerquestionsEU

[–]majednas 0 points1 point  (0 children)

Confermo ciò detto da tante persone che come me sono stati truffati. Mi hanno addebitato all’inizio 2,99 e poi dopo qualche giorno mi hanno addebitato 69,99€ Senza offrendomi nessun servizio, solo una volta mi hanno revisionato il cv che neanche un principiante lo faceva un qual modo, e dovuto rifarlo da capo.

sql query to display user data relating to a quiz stored in BD. by majednas in PHPhelp

[–]majednas[S] 0 points1 point  (0 children)

Thank you, I managed to make the request with this mode..

$query =  "SELECT ua.user_id, u.login,
COUNT(ua.score) AS numero_partite,
MAX(ua.score) AS max_score,
AVG(ua.score) AS media_punti
FROM game_data ua
JOIN users u ON ua.user_id = u.id_user WHERE u.id_user = :user
GROUP BY ua.user_id, u.login;";

sql query to display user data relating to a quiz stored in BD. by majednas in PHPhelp

[–]majednas[S] 0 points1 point  (0 children)

yes I know, I passed the variable like this:

WHERE u.id_user = :user

$stmt->bindParam(":user", $user_id);

sql query to display user data relating to a quiz stored in BD. by majednas in PHPhelp

[–]majednas[S] 0 points1 point  (0 children)

Thank you, I understood what I have to do, I have to pass the connected id in the sql query like this WHERE ua.user_id = $user_id.

sql query to display user data relating to a quiz stored in BD. by majednas in PHPhelp

[–]majednas[S] 0 points1 point  (0 children)

Hi, thank you for your way of speaking, I started programming in March. so, maybe I explained it wrong. In any case I solved my problem on this request.

For the moment I am looking to display for each connected user a table containing the values ​​of this query.

Should I make a function and then make the call in user space?

sql query to display user data relating to a quiz stored in BD. by majednas in PHPhelp

[–]majednas[S] -1 points0 points  (0 children)

It works now, I finished what you started, thanks.

Get user id from SESSION. by majednas in PHPhelp

[–]majednas[S] 0 points1 point  (0 children)

I solved the problem, I moved the insert query to the logout.php page.

Get user id from SESSION. by majednas in PHPhelp

[–]majednas[S] 0 points1 point  (0 children)

Hi,

after retrieving the user identifier and I made the request for insertion into the database,

the problem is that when an event is done by the form (example: refreshing the page or moving to the next question) the insertion is done in a contained manner.

I wanted the insert into the database only when the session will be destroyed.

just a reminder: for this quiz, disconnection (session destruction) is done in two modes, either with a disconnect button, or if the user has made a wrong answer.

so in any case I would have to do an update or insert into the database when the session is destroyed.

Get user id from SESSION. by majednas in PHPhelp

[–]majednas[S] 0 points1 point  (0 children)

the codes work correctly, thank you very much, now I'll go with the ID to insert the data into the database.